在我的应用程序中,我通过 Chrome 自定义选项卡打开了一个网址。我们知道,当用户点击设备后退按钮或自定义后退按钮时,Chrome 自定义选项卡将关闭。是否可以在无需用户干预的情况下以编程方式关闭 Chrome 自定义选项卡。
3 回答
目前没有这样的支持以编程方式关闭 chrome 自定义选项卡。但是,如果需要,您可以通过从启动 chrome 自定义选项卡的位置开始之前的活动来关闭它。
让,您从“ MainActivity ”打开 chrome 自定义选项卡,并且在 chrome 自定义选项卡中有一个选项菜单项“关闭”,然后在“关闭”菜单项上单击您要关闭 chrome 自定义选项卡并返回“ MainActivity ”,然后你可以通过启动“ MainActivity ”来做到这一点。为此,请将您的活动启动模式设置为singleTask
,然后FLAG_ACTIVITY_CLEAR_TOP
在单击按钮时开始您的活动。
查看我的演示代码以获取详细信息,希望它对想要这样的人有所帮助。
AndroidManifest.xml:
<activity
android:name=".MainActivity"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".CustomTabReceiver"
android:enabled="true" />
MainActivity.java :
public class MainActivity extends Activity {
public static String CHROME_PACKAGE_NAME = "com.android.chrome";
private Context mContext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mContext = this;
}
public void onClick(final View view) {
switch (view.getId()) {
case R.id.btnOpenChromeCustomTab:
launchChromeCustomTab();
break;
default:
return;
}
}
private void launchChromeCustomTab() {
Uri uri = Uri.parse("http://www.google.com/");
Intent intent = new Intent(mContext, CustomTabReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
CustomTabsIntent.Builder customTabsBuilder = new CustomTabsIntent.Builder();
customTabsBuilder.addMenuItem("Close", pendingIntent);
CustomTabsIntent customTabsIntent = customTabsBuilder.build();
customTabsIntent.intent.setPackage(CHROME_PACKAGE_NAME);
customTabsIntent.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
customTabsIntent.launchUrl(mContext, uri);
}
}
CustomTabReceiver.java:
public class CustomTabReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent myIntent = new Intent(context, MainActivity.class);
myIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(myIntent);
}
}
活动主.xml:
<Button
android:id="@+id/btnOpenChromeCustomTab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:onClick="onClick"
android:text="Open Chrome Custom Tab" />
注意:
在测试此代码之前,通过显式检查
确保更新Chrome
已安装在设备上。因为在此演示代码中,chrome 自定义选项卡已通过将硬编码包设置为打开,com.android.chrome
并且应用程序可能会在未Chrome
安装的系统上中断。
因此,请按照最佳实践来启动 chrome 自定义选项卡。
否。需要用户同意才能关闭自定义选项卡视图。
android:noHistory="true" 在 manifest.xml 中使用这一行在活动中它工作得很好