前言
在上一篇文章中《Notification自定义界面》中我们实现了自定义的界面,那么我们该怎么为自定义的界面添加点击事件呢?像酷狗在通知栏 有“上一首”,“下一首”等控制按钮,我们需要对按钮的点击事件进行响应,不过方法和之前的点击设置不一样,需要另外处理,下面我将进行简单的说明。
实现
同样,我们需要一个Service的子类MyService,然后在MyService的onCreate中设置,如下代码:
public class MyService extends Service { public static final String ONCLICK = "com.app.onclick"; private BroadcastReceiver receiver_onclick = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals(ONCLICK)) { Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); vibrator.vibrate(1000); } } }; @Override public void onCreate() { super.onCreate(); Notification notification = new Notification(R.drawable.ic_launcher, "JcMan", System.currentTimeMillis()); RemoteViews view = new RemoteViews(getPackageName(),R.layout.notification); notification.contentView = view; IntentFilter filter_click = new IntentFilter(); filter_click.addAction(ONCLICK); //注册广播 registerReceiver(receiver_onclick, filter_click); Intent Intent_pre = new Intent(ONCLICK); //得到PendingIntent PendingIntent pendIntent_click = PendingIntent.getBroadcast(this, 0, Intent_pre, 0); //设置监听 notification.contentView.setOnClickPendingIntent(R.id.btn,pendIntent_click); //前台运行 startForeground(1, notification); } @Override public IBinder onBind(Intent intent) { return null; }}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机Android自定义Notification添加点击事件
后端开发2023-05-30
C#为控件添加自定义事件及自定义触发
后端开发2024-04-02
Android如何定义列表点击事件
后端开发2023-06-22
C#怎么为控件添加自定义事件及自定义触发
后端开发2023-06-30
Android 自定义view模板并实现点击事件的回调
后端开发2022-06-06
Android给TextView添加点击事件的实现方法
后端开发2022-06-06
vue如何给自定义的组件绑定点击事件
后端开发2024-04-02
vue怎么给自定义的组件绑定点击事件
后端开发2023-06-30
vue使用highcharts自定义图例点击事件
后端开发2024-04-02
Android 13添加自定义native服务
后端开发2023-08-19
Android列表点击事件定义的一些思考
后端开发2024-04-02
关于Element-UITable表格指定列添加点击事件
后端开发2024-04-02
vue自定义组件怎么添加使用原生事件
后端开发2023-06-30
vue自定义组件如何添加使用原生事件
后端开发2024-04-02
Android 自定义View实现单击和双击事件的方法
后端开发2022-06-06
Android Flutter怎么在点击事件上添加动画效果
后端开发2023-07-05
Android开发使用RecyclerView添加点击事件实例详解
后端开发2024-04-02
vue如何使用hightcharts自定义图例点击事件
后端开发2023-06-29
Vue如何给组件添加点击事件 @click.native
后端开发2022-11-13
Android 自定义Button控件实现按钮点击变色
后端开发2022-06-06
咦!没有更多了?去看看其它编程学习网 内容吧