Câu hỏi được gắn thẻ «android-notifications»

Thông báo trạng thái thêm một biểu tượng vào thanh trạng thái của hệ thống (với một tin nhắn văn bản mã cổ phiếu tùy chọn) và một tin nhắn thông báo trong cửa sổ thông báo.




22
INSTALL_FAILED_DUPLICATE_PERMISSION CẦU C2D_MESSAGE
Tôi đang sử dụng thông báo của Google trong ứng dụng của mình và cho đến bây giờ tôi đã thực hiện bên dưới trong bảng kê khai: <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping …


18
Âm thanh thông báo Android
Tôi đã sử dụng trình xây dựng NotificationCompat mới hơn và tôi không thể nhận được thông báo để phát ra âm thanh. Nó sẽ rung và nhấp nháy ánh sáng. Tài liệu android nói để thiết lập một phong cách mà tôi đã thực hiện với: builder.setStyle(new NotificationCompat.InboxStyle()); Nhưng …


6
Thông báo vượt qua Intras Extras cũ
tôi đang tạo một thông báo bên trong BroadcastReceiver thông qua mã này: String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = {0,100,200,200,200,200}; notification.vibrate …

22
Cách khắc phục: android.app.RemoteServiceException: Thông báo xấu được đăng từ gói *: Không thể tạo biểu tượng: StatusBarIcon
Tôi đang thấy ngoại lệ sau trong nhật ký sự cố: android.app.RemoteServiceException: Bad notification posted from package com.my.package: Couldn't create icon: StatusBarIcon(pkg=com.my.package user=0 id=0x7f02015d level=0 visible=true num=0 ) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:146) at android.app.ActivityThread.main(ActivityThread.java:5487) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099) at dalvik.system.NativeStart.main(Native Method) Tôi đang …

17
Cách hiển thị nhiều thông báo trong Android
Tôi chỉ nhận được một thông báo và nếu có một thông báo khác, nó sẽ thay thế thông báo trước đó và đây là mã của tôi private static void generateNotification(Context context, String message, String key) { int icon = R.drawable.ic_launcher; long when = System.currentTimeMillis(); NotificationManager notificationManager = (NotificationManager) …





Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.