真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android自定義Notification添加點(diǎn)擊事件-創(chuàng)新互聯(lián)

前言

專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來(lái)客戶和效益!成都創(chuàng)新互聯(lián)為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計(jì)制作,服務(wù)好的網(wǎng)站設(shè)計(jì)公司,成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)負(fù)責(zé)任的成都網(wǎng)站制作公司!

在上一篇文章中《Notification自定義界面》中我們實(shí)現(xiàn)了自定義的界面,那么我們?cè)撛趺礊樽远x的界面添加點(diǎn)擊事件呢?像酷狗在通知欄 有“上一首”,“下一首”等控制按鈕,我們需要對(duì)按鈕的點(diǎn)擊事件進(jìn)行響應(yīng),不過(guò)方法和之前的點(diǎn)擊設(shè)置不一樣,需要另外處理,下面我將進(jìn)行簡(jiǎn)單的說(shuō)明。

實(shí)現(xiàn)

同樣,我們需要一個(gè)Service的子類(lèi)MyService,然后在MyService的onCreate中設(shè)置,如下代碼:

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);
  //注冊(cè)廣播
  registerReceiver(receiver_onclick, filter_click);
  Intent Intent_pre = new Intent(ONCLICK);
  //得到PendingIntent
  PendingIntent pendIntent_click = PendingIntent.getBroadcast(this, 0, Intent_pre, 0);
  //設(shè)置監(jiān)聽(tīng)
  notification.contentView.setOnClickPendingIntent(R.id.btn,pendIntent_click);
  //前臺(tái)運(yùn)行
  startForeground(1, notification);
 }
 @Override
 public IBinder onBind(Intent intent) {
  return null;
 }
}


當(dāng)前標(biāo)題:Android自定義Notification添加點(diǎn)擊事件-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://weahome.cn/article/iccgc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部