我在 android 中有一个磁卡读卡器代码,我想通过浏览器(通过 javascript)或使用 HTML5 getUserMedia()
API 从卡上刷卡并通过 JavaScript 获取卡信息。有什么办法可以做到这一点?请分享示例代码,如果您有...
编辑:我提到了这个链接: Jquery Mobile Web: Is Calling Native Apps possible?
我不知道如何在我的脚本中使用它:myapp://myparam
我在清单文件中添加了这段代码,
<intent-filter>
<action android:name="android.intent.action.VIEW" >
</action>
<category android:name="android.intent.category.DEFAULT" >
</category>
<category android:name="android.intent.category.BROWSABLE" >
</category>
<data
android:host="http://market.android.com/"
android:scheme="http" >
</data>
</intent-filter>
如何在浏览器中启动此应用程序(即链接)...