我正在尝试做一件简单的事情 - 从我手机本地运行的html页面启动我的Android应用程序。更多细节:
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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:scheme="http"
android:host="launchMyApp.com"/>
</intent-filter>
</activity>
</application>
我的html看起来像
<!DOCTYPE html>
<html>
<body>
<p><a href="intent://main/#Intent;scheme=http;package=launchMyApp.com;end"> Launch My App </a></p>
<p> <a href="intent://scan/#Intent;scheme=zxing;package=com.google.zxing.client.android;end"> Take a QR code </a></p>
</html>
<a href="http://www.google.com">Go to Google</a>
我的html页面是否需要托管在服务器上,或者Android应用程序是否需要在Play商店才能运行?
此功能仅限于网络应用,因为我尝试使用原生Android应用进行此操作。
非常感谢任何帮助。