我已经阅读了所有其他有关此操作的信息,但都没有解决我的问题。显然,该链接必须使用http方案,否则在短信中不可点击。
如果我使用其他人发布的内容,并且单击http链接,则会得到以下提示:
打开URL,添加到书签,复制消息文本
如果打开URL,我只会选择浏览器,就没有其他选择了。
我需要它来打开应用程序,而不是提供浏览器选项。
请帮忙。
XML:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<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.catagory.DEFAULT"/>
<category android:name="android.intent.catagory.BROWSABLE"/>
<data android:scheme="http" android:host="starttestapp.com"/>
</intent-filter>
</activity>
</application>
最佳答案
如果复制粘贴的代码,则将出现拼写错误:
类别应为以下类别:
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
关于android - 从短信中的链接启动android应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13704604/