在Google Chorme上输入此应用程序的网址时如何打开应用程序?

时间:2019-05-22 14:36:54

标签: xamarin xamarin.forms xamarin.android

当我在Google Chrome浏览器中输入应用的 url 时,我正在为打开的应用编写代码。

uri-scheme

但是当我在Google Chrome浏览器中输入 url 时,我无法打开我的应用。

这是我的代码:

        <activity android:configChanges="orientation|screenSize" android:icon="@drawable/ic_launcher" android:label="MobileApp" android:launchMode="singleInstance" android:theme="@style/MobileApp" android:windowSoftInputMode="stateUnspecified|adjustPan" android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="mobileapp" />
        </intent-filter>
    </activity>

我无法打开我的应用程序:

Image_1

Image_2

这是Android的默认打开方式。

请帮助我!

谢谢!

0 个答案:

没有答案