本文整理汇总了Java中com.odoo.core.utils.notification.ONotificationBuilder.setOngoing方法的典型用法代码示例。如果您正苦于以下问题:Java ONotificationBuilder.setOngoing方法的具体用法?Java ONotificationBuilder.setOngoing怎么用?Java ONotificationBuilder.setOngoing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.odoo.core.utils.notification.ONotificationBuilder
的用法示例。
在下文中一共展示了ONotificationBuilder.setOngoing方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: _download
import com.odoo.core.utils.notification.ONotificationBuilder; //导入方法依赖的package包/类
private void _download(ODataRow attachment) {
ONotificationBuilder builder = new ONotificationBuilder(mContext,
attachment.getInt(OColumn.ROW_ID));
builder.setTitle("Downloading " + attachment.getString("name"));
builder.setText("Download in progress");
builder.setOngoing(true);
builder.setAutoCancel(true);
DownloadManager downloader = new DownloadManager(builder);
downloader.execute(attachment);
}
示例2: showSignInErrorNotification
import com.odoo.core.utils.notification.ONotificationBuilder; //导入方法依赖的package包/类
private static void showSignInErrorNotification(Context context, OUser user) {
ONotificationBuilder builder = new ONotificationBuilder(context,
REQUEST_SIGN_IN_ERROR);
builder.setTitle("Odoo authentication problem");
builder.setBigText("May be you have changed your account " +
"password or your account does not exists");
builder.setIcon(R.drawable.ic_action_alert_warning);
builder.setText(user.getAndroidName());
builder.allowVibrate(true);
builder.withRingTone(false);
builder.setOngoing(true);
builder.withLargeIcon(false);
builder.setColor(R.color.android_orange_dark);
Bundle extra = user.getAsBundle();
// Actions
ONotificationBuilder.NotificationAction actionReset = new ONotificationBuilder.NotificationAction(
R.drawable.ic_action_refresh,
"Reset",
110,
"reset_password",
OdooAccountQuickManage.class,
extra
);
ONotificationBuilder.NotificationAction deleteAccount = new ONotificationBuilder.NotificationAction(
R.drawable.ic_action_navigation_close,
"Remove",
111,
"remove_account",
OdooAccountQuickManage.class,
extra
);
builder.addAction(actionReset);
builder.addAction(deleteAccount);
builder.build().show();
}
示例3: _download
import com.odoo.core.utils.notification.ONotificationBuilder; //导入方法依赖的package包/类
private void _download(ODataRow attachment) {
ONotificationBuilder builder = new ONotificationBuilder(mActivity,
attachment.getInt(OColumn.ROW_ID));
builder.setTitle("Downloading " + attachment.getString("name"));
builder.setText("Download in progress");
builder.setOngoing(true);
builder.setAutoCancel(true);
DownloadManager downloader = new DownloadManager(builder);
downloader.execute(attachment);
}