כדי לדעת אם דפדפן ברירת המחדל או דפדפן כלשהו במכשיר תומך בכרטיסיות מותאמות אישית, אפשר להשתמש בכלי העזר getPackageName
בCustomTabsClient
:
String packageName = CustomTabsClient.getPackageName(
context,
Collections.emptyList()
);
if (packageName == null) {
// Custom Tabs are not supported by the default browser
}
אפשר גם לבדוק אם דפדפן כלשהו במכשיר תומך בכרטיסיות מותאמות אישית:
// Get all apps that can handle VIEW intents and Custom Tab service connections.
Intent activityIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com"));
PackageManager packageManager = context.getPackageManager();
List<ResolveInfo> viewIntentHandlers = packageManager.queryIntentActivities(activityIntent, 0);
// Get a package that supports Custom Tabs
String packageName = CustomTabsClient.getPackageName(
context,
viewIntentHandlers,
true /* ignore default */
);
if (packageName == null) {
// Custom Tabs are not supported by any browser on the device
}
ב-Android 11 בוצעו שינויים בהרשאות הגישה לחבילה. אם האפליקציה ל-Android מטרגטת רמת API 30 ומעלה, צריך להוסיף את קטע השאילתות הבא אל AndroidManifest.xml
, אחרת קטע הקוד שלמעלה לא יחזיר תוצאות:
<queries>
<intent>
<action android:name=
"android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>