我正在开发一个应用程序,我必须通过三个按钮和一个计时器任务显示正在进行的通知
我有一些解决方案可以通过将按钮添加到xml文件但使用
添加通知中的按钮RemoteViews remoteViews = new RemoteViews(c.getPackageName(),
R.layout.customnotification);
remoteViews.setOnClickPendingIntent(R.id.iprayednotification, pendingIntent);
它只允许pendingIntentListeners
我必须在点击通知按钮时将一些数据输入数据库,并在通知中显示倒数计时器
任何可以帮助我的例子或任何想法?