我一直在开发一个 android 应用程序,我需要在其中设置一个持久通知,它永远不会离开状态栏。所有的东西都设置正确,但我需要在通知中使用完整的背景,没有任何文字或任何东西。因为我附上了截图。
我使用了以下代码:
String notificationTitle = "Here My App Name Goes";
String notificationMessage = "Search with ---------";
Intent targetIntent = new Intent(Intent.ACTION_MAIN);
targetIntent.setClassName(this, this.getClass().getName());
int requestCode = AppSingleton.NOTIFICATION_ID_ALWAYS;
PendingIntent contentIntent = PendingIntent.getActivity(this,
requestCode, targetIntent, 0);
String statusBarTickerText = "Search from ----------";
int icon = R.drawable.ic_launcher;
Notification notification = new Notification(icon,
statusBarTickerText, System.currentTimeMillis());
notification.flags = Notification.FLAG_ONGOING_EVENT
| Notification.FLAG_NO_CLEAR;
notification.setLatestEventInfo(this, notificationTitle,
notificationMessage, contentIntent);
nm.notify(AppSingleton.NOTIFICATION_ID_ALWAYS, notification);
我可以设置我的应用程序图标并在其上写一些文字,但我需要设置完整的背景,因为它是提供的屏幕截图。
请帮助我摆脱这个 prm。