我有一個Chrome自定義選項卡,但我想添加一個偵聽器到標題欄左上角的關閉(X)按鈕。添加一個收聽者到Chrome自定義選項卡關閉按鈕
我想每次用戶點擊關閉按鈕時觸發回調。
我能夠做到這一點在Web視圖,但無法弄清楚,如果這是可能的鉻自定義選項卡。
這裏是代碼片段我用它來調用自定義標籤:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.enableUrlBarHiding();
builder.setToolbarColor(getTitleBarBackgroundColor());
builder.setStartAnimations(this, android.R.anim.slide_in_left, android.R.anim.slide_out_right);
builder.setExitAnimations(this, android.R.anim.slide_in_left, android.R.anim.slide_out_right);
customTabsIntent = builder.build();
customTabsIntent.intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
customTabsIntent.launchUrl(this, Uri.parse(url));
你可以分享你的屏幕,你的要求是什麼。並且您是使用原生android還是使用HTML腳本。分享您的代碼 –
native android,並添加了編碼片段 –