当我在Google Chrome浏览器中输入应用的 url 时,我正在为打开的应用编写代码。
但是当我在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>
我无法打开我的应用程序:
这是Android的默认打开方式。
请帮助我!
谢谢!