استخدام واجهة برمجة التطبيقات Custom Tab (واجهة برمجة التطبيقات المنخفضة المستوى)

والطريقة المقترحة لدمج تطبيقك مع "علامات التبويب المخصصة" هي استخدام مكتبة متصفِّح AndroidX، ولكن يمكنك أيضًا بدء علامة تبويب مخصَّصة بدون مكتبة الدعم. يقدِّم هذا الدليل نظرة عامة حول كيفية تحقيق ذلك.

يتوفر التنفيذ الكامل لمكتبة الدعم على GitHub ويمكن استخدامه نقطة البداية. ويتضمّن أيضًا ملفات AIDL المطلوبة للربط بالخدمة، مثل الملفات. لا يمكن استخدام Android Studio مباشرةً في مستودع Chromium.

أساسيات تشغيل علامات التبويب المخصّصة باستخدام واجهة برمجة تطبيقات المستوى المنخفض

// Using a VIEW intent for compatibility with any other browsers on device.
// Caller should not be setting FLAG_ACTIVITY_NEW_TASK or 
// FLAG_ACTIVITY_NEW_DOCUMENT. 
String url = ¨https://paul.kinlan.me/¨;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); 
//  Must have. Extra used to match the session. Its value is an IBinder passed
//  whilst creating a news session. See newSession() below. Even if the service is not 
//  used and there is no valid session id to be provided, this extra has to be present 
//  with a null value to launch a custom tab.

private static final String EXTRA_CUSTOM_TABS_SESSION = "android.support.customtabs.extra.SESSION";
Bundle extras = new Bundle;
extras.putBinder(EXTRA_CUSTOM_TABS_SESSION, 
   sessionICustomTabsCallback.asBinder() /* Set to null for no session */);
intent.putExtras(extras);

إضافة تخصيصات واجهة المستخدم

يتم تضمين تخصيصات واجهة المستخدم من خلال إضافة عناصر إضافية إلى هدف ACTION_VIEW. تشمل القائمة الكاملة يمكن العثور على المفاتيح الإضافية المستخدمة لتخصيص واجهة المستخدم في مستندات CustomTabsIntent. مثال على فيما يلي كيفية إضافة لون مخصص لشريط الأدوات:

// Extra that changes the background color for the address bar. colorInt is an int
// that specifies a Color.

private static final String EXTRA_CUSTOM_TABS_TOOLBAR_COLOR = "android.support.customtabs.extra.TOOLBAR_COLOR";
intent.putExtra(EXTRA_CUSTOM_TABS_TOOLBAR_COLOR, colorInt);

الاتصال بخدمة "علامات التبويب المخصّصة"

يمكن استخدام خدمة "علامات التبويب المخصّصة" (Custom Tabs) بالطريقة نفسها التي يتم بها استخدام خدمات Android الأخرى. الواجهة هي تم إنشاؤها باستخدام AIDL وإنشاء فئة خدمة خادم وكيل لك تلقائيًا.

يمكنك استخدام الطرق المتوفّرة في خدمة الخادم الوكيل للاستعداد وإنشاء الجلسات والجلب المسبق:

// Package name for the Chrome channel the client wants to connect to. This
// depends on the channel name.
// Stable = com.android.chrome
// Beta = com.chrome.beta
// Dev = com.chrome.dev
public static final String CUSTOM_TAB_PACKAGE_NAME = "com.chrome.dev";  // Change when in stable

// Action to add to the service intent. This action can be used as a way 
// generically pick apps that handle custom tabs for both activity and service 
// side implementations.
public static final String ACTION_CUSTOM_TABS_CONNECTION =
       "android.support.customtabs.action.CustomTabsService";
Intent serviceIntent = new Intent(ACTION_CUSTOM_TABS_CONNECTION);

serviceIntent.setPackage(CUSTOM_TAB_PACKAGE_NAME);
context.bindService(serviceIntent, mServiceConnection,
                    Context.BIND_AUTO_CREATE | Context.BIND_WAIVE_PRIORITY);