Korzystanie z interfejsu API niskiego poziomu karty niestandardowej

Zalecanym sposobem integracji aplikacji z kartami niestandardowymi jest użycie biblioteki przeglądarki AndroidX, ale możesz też uruchomić kartę niestandardową bez biblioteki pomocy. W tym przewodniku znajdziesz omówienie tego, jak to zrobić.

Pełna implementacja biblioteki pomocy jest dostępna w [GitHubie][1] i może służyć jako punkt początkowy. Zawiera też [pliki AIDL][2] wymagane do połączenia z usługą, ponieważ te znajdujące się w repozytorium Chromium nie są bezpośrednio użyteczne w Androidzie Studio.

Podstawowe informacje o uruchamianiu kart niestandardowych za pomocą interfejsu Low Level API

// 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);

Dodawanie dostosowań interfejsu

Dostosowania interfejsu użytkownika są uwzględniane przez dodanie dodatków do intencji ACTION_VIEW. Pełną listę kluczy dodatkowych używanych do dostosowywania interfejsu znajdziesz w [dokumentacji CustomTabsIntent][3]. Poniżej znajdziesz przykład dodawania niestandardowego koloru paska narzędzi:

// 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);

Łączenie z usługą kart niestandardowych

Usługi kart niestandardowych można używać w taki sam sposób jak innych usług Androida. Interfejs jest tworzony za pomocą języka AIDL i automatycznie tworzy klasę usługi proxy.

Użyj metod usługi pośredniczącej, aby rozgrzać, utworzyć sesje i pobierać z wyprzedzeniem:

// 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);    

[1]: https://github.com/GoogleChrome/custom-tabs-client/tree/master/customtabs [2]: https://developer.android.com/guide/components/aidl.html [3]: https://developer.android.com/reference/androidx/browser/customtabs/CustomTabsIntent