기본 브라우저 또는 기기의 브라우저가 맞춤 탭을 지원하는지 확인하려면 CustomTabsClient
에서 getPackageName
도우미를 사용하세요.
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>