我无法使用intent-filters从网址启动我的应用。我已经检查过Android app not opening from URL using intent-filter和Open Android app from URL using intent-filter not working甚至更多内容而没有让它工作。
我是否必须在活动中做一些特别的事情?
这是我在浏览http://www.speedle.se
下的所有内容时尝试启动的活动 <activity
android:name=".activity.LoginActivity"
android:label="@string/title_activity_login"
android:screenOrientation="portrait">
<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="www.speedle.se"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
问候并感谢 的Mattias
答案 0 :(得分:0)
答案 1 :(得分:0)
现在它正在使用推特应用卡和Facebook,感谢所有帮助。我的Twitter问题是Prerender.io缓存了我的页面,因此Twitter没有得到新的元数据。