我正在尝试从网站上打开我的应用并从链接中读取一些文字。该网址将与codespike.com/?code=xxxx
类似。我需要阅读xxx
,但我的问题是,当在浏览器中打开此特定网址时,我无法打开我的应用。为了测试,我还使用了一个网站bfinstafollowers.com
,也没有使用它。
这就是我想要的。
<activity
android:name="com.softech.betforinstafollowers.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:host="bfinstafollowers.com" android:scheme="http"
android:pathPrefix=".*"/>
</intent-filter>
</activity>
也尝试使用<category android:name="android.intent.category.BROWSABLE"/>
而没有android:pathPrefix=".*"
,但我的应用程序没有打开。
答案 0 :(得分:0)
解决了我的问题,因为结果是常规http
,https
不起作用。我必须为此目的创建自定义方案。