如果在Android手机浏览器中打开html页面,我只需要点击html页面按钮就可以打开应用程序。
抱歉我的英语。请建议。
提前致谢
答案 0 :(得分:1)
您可以设置应用程序intent-filter
的{{1}},如下所示,从浏览器打开此应用程序。
Main-activity
修改强>
如果您已经如上所述编写了 <activity
android:name="activity_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="example.com"
android:scheme="http" />
<data
android:host="www.example.com"
android:scheme="http" />
</intent-filter>
</activity>
您的活动,那么您可以在html按钮上打开您的应用,点击如下。
点击html页面按钮调用网址<intent-filter>
示例:
http://www.example.com
答案 1 :(得分:0)
可以从深层链接启动已安装的应用程序。
请参阅Deep Linking