本文整理匯總了Java中org.chromium.webapk.lib.client.WebApkServiceConnectionManager類的典型用法代碼示例。如果您正苦於以下問題:Java WebApkServiceConnectionManager類的具體用法?Java WebApkServiceConnectionManager怎麽用?Java WebApkServiceConnectionManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
WebApkServiceConnectionManager類屬於org.chromium.webapk.lib.client包,在下文中一共展示了WebApkServiceConnectionManager類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: notifyNotification
import org.chromium.webapk.lib.client.WebApkServiceConnectionManager; //導入依賴的package包/類
/**
* Connect to a WebAPK's bound service, build a notification and hand it over to the WebAPK to
* display. Handing over the notification makes the notification look like it originated from
* the WebAPK - not Chrome - in the Android UI.
*/
public static void notifyNotification(String webApkPackage,
final NotificationBuilderBase notificationBuilder, final String platformTag,
final int platformID) {
final ApiUseCallback connectionCallback = new ApiUseCallback() {
@Override
public void useApi(IWebApkApi api) throws RemoteException {
notificationBuilder.setSmallIcon(api.getSmallIconId());
api.notifyNotification(platformTag, platformID, notificationBuilder.build());
}
};
WebApkServiceConnectionManager.getInstance().connect(
ContextUtils.getApplicationContext(), webApkPackage, connectionCallback);
}
示例2: cancelNotification
import org.chromium.webapk.lib.client.WebApkServiceConnectionManager; //導入依賴的package包/類
/**
* Cancel notification previously shown by WebAPK.
*/
public static void cancelNotification(
String webApkPackage, final String platformTag, final int platformID) {
final ApiUseCallback connectionCallback = new ApiUseCallback() {
@Override
public void useApi(IWebApkApi api) throws RemoteException {
api.cancelNotification(platformTag, platformID);
}
};
WebApkServiceConnectionManager.getInstance().connect(
ContextUtils.getApplicationContext(), webApkPackage, connectionCallback);
}
示例3: notifyNotification
import org.chromium.webapk.lib.client.WebApkServiceConnectionManager; //導入依賴的package包/類
/**
* Connect to a WebAPK's bound service, build a notification and hand it over to the WebAPK to
* display. Handing over the notification makes the notification look like it originated from
* the WebAPK - not Chrome - in the Android UI.
*/
public static void notifyNotification(final String webApkPackage,
final NotificationBuilderBase notificationBuilder, final String platformTag,
final int platformID) {
final ApiUseCallback connectionCallback = new ApiUseCallback() {
@Override
public void useApi(IWebApkApi api) throws RemoteException {
int smallIconId = api.getSmallIconId();
// Prior to Android M, the small icon had to be from the resources of the app whose
// NotificationManager is used in {@link NotificationManager#notify()}. On Android
// M+, the small icon has to be from the resources of the app whose context is
// passed to the {@link Notification.Builder()} constructor.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
// Android M+ introduced
// {@link Notification.Builder#setSmallIcon(Bitmap icon)}.
if (!notificationBuilder.hasSmallIconBitmap()) {
notificationBuilder.setSmallIcon(
decodeImageResource(webApkPackage, smallIconId));
}
} else {
notificationBuilder.setSmallIcon(smallIconId);
}
api.notifyNotification(platformTag, platformID, notificationBuilder.build());
}
};
WebApkServiceConnectionManager.getInstance().connect(
ContextUtils.getApplicationContext(), webApkPackage, connectionCallback);
}
示例4: onStop
import org.chromium.webapk.lib.client.WebApkServiceConnectionManager; //導入依賴的package包/類
@Override
public void onStop() {
super.onStop();
WebApkServiceConnectionManager.getInstance().disconnect(
ContextUtils.getApplicationContext(), getWebApkPackageName());
}