Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
開始使用
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
整合自訂分頁的第一步是將 AndroidX 瀏覽器程式庫新增至專案。開啟 app/build.gradle 檔案,並將瀏覽器程式庫新增至依附元件區段。
dependencies {
…
implementation 'androidx.browser:browser:1.5.0'
}
在自訂分頁中開啟連結
安裝 androidx.browser/browser 程式庫後,您可以使用 CustomTabsIntent.Builder 建立 CustomTabsIntent,並呼叫 launchUrl() 並傳遞 Uri,啟動自訂分頁:
String url = "https://developers.android.com";
CustomTabsIntent intent = new CustomTabsIntent.Builder()
.build();
intent.launchUrl(MainActivity.this, Uri.parse(url));
這會開啟全螢幕自訂分頁活動,如以下螢幕截圖所示。

支援 Android 應用程式連結
根據預設,自訂 Tabs 支援 Android 應用程式連結。也就是說,如果已安裝 YouTube 應用程式,啟動含有 YouTube 影片網址的 CustomTabsIntent 時,系統會開啟 YouTube 應用程式,而不是瀏覽器。
不過,將 CustomTabsSession 傳遞至 CustomTabIntent 會強制在自訂分頁中開啟連結,即使已安裝對應的原生應用程式也一樣。如果您想保留在原生應用程式中開啟網頁連結的預設行為,請另外按照這份指南,瞭解如何檢查連結是否可由已安裝的原生應用程式處理。
接下來,瞭解如何自訂自訂分頁的外觀與風格。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2023-04-21 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2023-04-21 (世界標準時間)。"],[],[]]