在我的应用中,我通过Chrome自定义标签打开了一个网址。我们知道,当用户点按设备后退按钮或自定义后退按钮时,Chrome自定义标签将会关闭。是否可以通过编程方式关闭Chrome自定义标签,无需用户干预。
答案 0 :(得分:14)
目前没有这样的支持以编程方式关闭chrome自定义标签。但是,如果您愿意,可以从启动Chrome自定义标签的位置开始上一个活动来关闭它。
让我们打开来自" MainActivity "的Chrome自定义标签并且有一个选项菜单项" 关闭"在Chrome自定义标签中,并在" 关闭"菜单项单击您要关闭Chrome自定义选项卡并返回" MainActivity "然后您可以通过启动" MainActivity &#34 ;.为此,请将您的活动launchMode设置为 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);
}
}
<强> activity_main.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
的系统上中断。
因此,请按照Best Practices启动Chrome自定义标签。
答案 1 :(得分:4)
没有。需要用户同意才能关闭自定义标签视图。
答案 2 :(得分:0)
android:noHistory =“ true”在活动中的manifest.xml中使用此行,效果很好