gpt4 book ai didi

android - 设置应用程序 Activity 以接受 action.VIEW action

转载 作者:行者123 更新时间:2023-11-29 21:02:08 25 4
gpt4 key购买 nike

当用户点击按钮时,会发生此代码:

Uri web = Uri.parse("http://www.google.com");
Intent i = new Intent(Intent.ACTION_VIEW,web);
startActivity(i);

它运行正常,在默认网络浏览器中打开网站。但我正在尝试显示菜单,如果您安装了更多能够显示网页的应用程序,该菜单就会出现。所以我用这个 AndroidManifest 文件准备了空白应用程序 FakeBrowser:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pavel.fakebrowser" >

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MyActivity"
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>
<data android:scheme="http" android:host="google.com"/>
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
</application>

我尝试设置第二个 intent-filter 标签,所以我的应用程序将接受这个浏览器请求,但它仍然会立即打开默认浏览器。请你能告诉我,我有什么问题吗?谢谢。

最佳答案

您必须使用 IntentChooser:

Uri web = Uri.parse("http://www.google.com");
Intent i = new Intent(Intent.ACTION_VIEW,web);
startActivity( Intent.createChooser(i, "Choose Application"));

更多信息:http://developer.android.com/training/basics/intents/sending.html

更新:在你的 list 上:

        <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http"/>
</intent-filter>

关于android - 设置应用程序 Activity 以接受 action.VIEW action,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25767927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com