我有一个小问题。
我有一个 Android Activity,我想从浏览器上的一个链接运行它。
这就是我在清单文件上声明我的活动的方式:
<activity android:name=".Wul4"
android:windowSoftInputMode="adjustPan"
android:configChanges="keyboardHidden|orientation"
android:launchMode="singleInstance"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="wul4" android:host="com.wul4.wul4"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
在 webApp 上,启动应用程序的链接如下:
wul4://com.wul4.wul4?codOperacion="+respuestaActual.idOperacion
关键是它可以在以下浏览器上运行:“Opera”和“Google Chrome”,但它不适用于其他浏览器............(例如,它不适用于默认浏览器)手机浏览器)。
有谁知道为什么???
非常感谢!