Android自定义Notification添加点击事件

作者:潘建成 时间:2022-04-06 19:06:30 

前言

在上一篇文章中《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;
}
}

可以看到,我们先得到BroadcastReceiver的一个对象,然后在onReceiver里面实现我们的操作,我设置成点击时候手机震动一秒钟,当然不要忘记在配置文件添加震动的权限,不然到时候就会出错了。如果对广播没有了解的,那么可以先去了解一下广播的机制,这里我使用的是动态注册广播的方法,还有另外一种方法来注册,不过我更喜欢动态注册的罢了。

小结

看到在Notification添加一个ProgressBar来实现下载的进度提示,这里需要用到更新Notification界面的知识,虽然和在Activity中更新界面不太一样,但是也不是在复杂,因为我并没有用到这方面的知识,所以这里就不给大家介绍了,有兴趣的可以搜相关的内容。

来源:http://blog.csdn.net/ProgramChangesWorld/article/details/47089595

标签:Android,Notification,点击事件
0
投稿

猜你喜欢

  • Android ImageButton自定义按钮的按下效果的代码实现方法分享

    2021-11-20 13:52:07
  • flutter使用tauri实现一个一键视频转4K软件

    2022-10-23 05:46:42
  • Android编程之控件ListView使用方法

    2022-08-12 08:50:03
  • 深入浅析Java 抽象类和接口

    2022-12-17 19:19:27
  • c# 复写Equals方法的实现

    2023-06-09 01:35:35
  • Android实现简单的分批加载ListView

    2023-10-28 14:49:21
  • Android实现ImageView阴影和图层效果

    2021-12-20 06:02:00
  • 心动吗?正大光明的免费使用IntelliJ IDEA商业版

    2023-11-25 04:29:48
  • SpringCloud实现灰度发布的方法步骤

    2023-03-17 05:18:37
  • Android实现雷达View效果的示例代码

    2022-09-27 11:39:52
  • java 中Spark中将对象序列化存储到hdfs

    2022-09-17 04:06:18
  • Java实现的求解经典罗马数字和阿拉伯数字相互转换问题示例

    2023-10-15 23:17:36
  • Java多线程(单例模式,堵塞队列,定时器)详解

    2022-09-18 16:22:20
  • Android组件banner实现左右滑屏效果

    2023-11-01 17:54:59
  • Android开发笔记之:深入理解Cursor相关的性能问题

    2021-10-31 15:06:49
  • Spring整合junit的配置过程图解

    2022-12-18 16:37:48
  • C#中内联函数的用法介绍

    2023-04-18 18:29:18
  • C# TextBox 扩展方法数据验证详细说明

    2022-05-07 14:21:36
  • Java实现图像分割功能

    2022-04-10 22:27:15
  • Idea 快速生成方法返回值的操作

    2023-07-31 02:12:49
  • asp之家 软件编程 m.aspxhome.com