本文整理汇总了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());
}