Notification消息通知 自定义消息通知内容布局

具体操作:自定义消息通知内容布局;点击界面中心的“点击发送消息”TextView控件,模拟发送通知消息,通知栏接收消息,点击几次则发送几次,点击通知栏消息,跳转到详情界面。

1.activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center"
  tools:context=".MainActivity">

  <TextView
    android:id="@+id/tv_show"
    android:text="点击发送消息"
    android:textSize="24sp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

</LinearLayout>

2.layout_item.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent" >

  <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@mipmap/ic_launcher" />

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="18dp"
    android:layout_toRightOf="@+id/imageView1"
    android:text="TextView" />

  <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView1"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="15dp"
    android:text="TextView" />

  <TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_marginLeft="54dp"
    android:layout_toRightOf="@+id/textView2"
    android:text="TextView" />

  <TextView
    android:id="@+id/textView4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/textView1"
    android:text="TextView" />

</RelativeLayout>

3.activity_detail.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:orientation="vertical"
       android:layout_width="match_parent"
       android:layout_height="match_parent">

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:id="@+id/name"
    android:textSize="18sp"
    android:layout_gravity="center_horizontal"/>

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:id="@+id/price"
    android:textSize="18sp"
    android:layout_gravity="center_horizontal"/>

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:id="@+id/detail"
    android:textSize="18sp"
    android:layout_gravity="center_horizontal"/>
</LinearLayout>

4.SingletonF类:

/**
 * 用于存储消息数目
 * Created by admin on 2017/9/4.
 */

public class SingletonF{

  private int info_number=0;

  private static class SingletonHolder {
    /**
     * 单例对象实例
     */
    static final SingletonF INSTANCE = new SingletonF();
  }

  public static SingletonF getInstance() {
    return SingletonHolder.INSTANCE;
  }

  /**
  * private的构造函数用于避免外界直接使用new来实例化对象
  */
  private SingletonF() {}

  public int getInfo_number() {
    return info_number;
  }

  public void setInfo_number(int info_number) {
    this.info_number = info_number;
  }

//  /**
//   * 若SingletonF implements Serializable则必须实现readResolve方法
//   * readResolve方法应对单例对象被序列化时候
//   */
//  private Object readResolve() {
//    return getInstance();
//  }

}

5.MyBroadcastReceiver类:

import java.text.SimpleDateFormat;
import java.util.Date;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Handler;
import android.os.Message;
import android.support.v4.app.NotificationCompat;
import android.util.Log;
import android.widget.RemoteViews;

public class MyBroadcastReceiver extends BroadcastReceiver {

  private SingletonF singletonF;
  private Context context1;

  @Override
  public void onReceive(Context context, Intent intent) {
    this.context1 = context;
//   if (intent.getStringExtra("info").equals("广播发送了")) {
//     Log.i("静态广播:", "广播我已经接受了");
//   }
    Message message = handler.obtainMessage();
    message.what = 0;
    handler.sendMessage(message);
  }

  private Handler handler = new Handler() {
    @Override
    public void handleMessage(Message msg) {
      switch (msg.what) {
        case 0:
          singletonF = SingletonF.getInstance();
          int first = singletonF.getInfo_number();
          first++;
          Date nowTime = new Date(System.currentTimeMillis());
          SimpleDateFormat sdFormatter = new SimpleDateFormat("HH:mm");
          String retStrFormatNowDate = sdFormatter.format(nowTime);
          singletonF.setInfo_number( first);

          RemoteViews contentViews = new RemoteViews(context1.getPackageName(), R.layout.layout_item);
          // 通过控件的Id设置属性
          contentViews.setImageViewResource(R.id.imageView1, R.mipmap.ic_launcher_round);
          contentViews.setTextViewText(R.id.textView1, "消息标题");
          contentViews.setTextViewText(R.id.textView2, "消息内容");
          contentViews.setTextViewText(R.id.textView3, " (" + first + "条新消息)");
          contentViews.setTextViewText(R.id.textView4, "" + retStrFormatNowDate);
          // 点击通知栏跳转的activity
          Intent intent = new Intent(context1, ActDetail.class);
          PendingIntent pendingIntent = PendingIntent.getActivity(context1, 0, intent,
              PendingIntent.FLAG_CANCEL_CURRENT);

          NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context1)
              .setSmallIcon(R.mipmap.ic_launcher_round).setTicker("new message");
          // 自动管理通知栏消息
          mBuilder.setAutoCancel(true);
          mBuilder.setContentIntent(pendingIntent);
          /// 自定义布局
          mBuilder.setContent(contentViews);
          // 使用默认提示音
          mBuilder.setDefaults(Notification.DEFAULT_ALL);
          NotificationManager mNotificationManager = (NotificationManager) context1
              .getSystemService(context1.NOTIFICATION_SERVICE);
          // notify(int id, Notification notification)若id为同一个值,则通知栏只会显示一行,并不停更新此消息内容
          // 若为类似UUID.randomUUID().hashCode()这样不同的唯一标识符,则有几条消息通知栏就显示几行
          mNotificationManager.notify(1, mBuilder.build());

          break;
        default:
          break;
      }
    }
  };

}

6.MainActivity类:

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

  private TextView tv_show;
  private int btn_number = 0;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    tv_show = (TextView) this.findViewById( R.id.tv_show);
    tv_show.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        showNotify();
        btn_number++;
        tv_show.setText("发送了" + btn_number + "次广播");
      }
    });
  }

  private void showNotify() {
    Intent intent = new Intent();
    intent.setAction("MASSAGE_NOTIFICATION");
//    intent.putExtra("info", "广播发送了");
    sendBroadcast(intent);
  }

  @Override
  protected void onStop() {
    btn_number = 0;
    tv_show.setText("发送了" + btn_number + "次广播");
    super.onStop();
  }

  @Override
  protected void onPause() {
    btn_number = 0;
    tv_show.setText("发送了" + btn_number + "次广播");
    super.onPause();
  }

  @Override
  protected void onDestroy() {
    btn_number = 0;
    super.onDestroy();
  }

}

7.ActDetail类:

import android.app.NotificationManager;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;

/**
 * Created by admin on 2017/9/4.
 */

public class ActDetail extends AppCompatActivity{

  NotificationManager notificationManager;
  SingletonF singletonF;

  @Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_detail);

    singletonF = SingletonF.getInstance();
    notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.cancel(1);
    singletonF.setInfo_number(0);
  }
}

没找到原创作者,所以也不知道来自何处,只有等以后知道原创作者后再补上来源网址!!!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android种使用Notification实现通知管理以及自定义通知栏实例(示例四)

    示例一:实现通知栏管理 当针对相同类型的事件多次发出通知,作为开发者,应该避免使用全新的通知,这时就应该考虑更新之前通知栏的一些值来达到提醒用户的目的.例如我们手机的短信系统,当不断有新消息传来时,我们的通知栏仅仅是更改传来短信的数目,而不是对每条短信单独做一个通知栏用于提示. 修改通知 可以设置一条通知,当然可以更新一条通知,我们通过在调用NotificationManager.notify(ID, notification)时所使用的ID来更新它.为了更新你之前发布的通知,你需要更新或者创建

  • iOS推送之本地通知UILocalNotification

    摘要: Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程.本地的Notification由iOS下NotificationManager统一管理,只需要将封装好的本地Notification对象加入到系统Notification管理机制队列中,系统会在指定的时间激发将本地Notification,应用只需设计好处理Notifi

  • Android 使用AlarmManager和NotificationManager来实现闹钟和通知栏

    实现闹钟运行的效果如下: 通知栏的运行后效果图如下: 布局文件(activity_main.xml) <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools&qu

  • 详解Android中Notification通知提醒

    在消息通知时,我们经常用到两个组件Toast和Notification.特别是重要的和需要长时间显示的信息,用Notification就最 合适不过了.当有消息通知时,状态栏会显示通知的图标和文字,通过下拉状态栏,就可以看到通知信息了,Android这一创新性的UI组件赢得了用户的一 致好评,就连苹果也开始模仿了.今天我们就结合实例,探讨一下Notification具体的使用方法.  首先说明一下我们需要实现的功能是:在程序启动时,发出一个通知,这个通知在软件运行过程中一直存在,相当于qq的托盘

  • Android中通过Notification&NotificationManager实现消息通知

    notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户.它是看不见的程序组件(Broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径. 1.新建一个android项目 我新建项目的 minSdkVersion="11",targetSdkVersion="19".也就是支持最低版本的3.0的. 2.习惯性地打开项目清单文件AndroidManifest.xml,添加一个权限:&

  • android使用NotificationListenerService监听通知栏消息

    NotificationListenerService是通过系统调起的服务,在应用发起通知时,系统会将通知的应用,动作和信息回调给NotificationListenerService.但使用之前需要引导用户进行授权.使用NotificationListenerService一般需要下面三个步骤. 注册服务 首先需要在AndroidManifest.xml对service进行注册. <service android:name=".NotificationCollectorService&q

  • Android开发 -- 状态栏通知Notification、NotificationManager详解

    本想自己写一个的,但是看到这篇之后,我想还是转过来吧,实在是非常的详细: 在Android系统中,发一个状态栏通知还是很方便的.下面我们就来看一下,怎么发送状态栏通知,状态栏通知又有哪些参数可以设置? 首先,发送一个状态栏通知必须用到两个类:  NotificationManager . Notification. NotificationManager :  是状态栏通知的管理类,负责发通知.清楚通知等. NotificationManager 是一个系统Service,必须通过 getSys

  • android中创建通知栏Notification代码实例

    ///// 第一步:获取NotificationManager NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); ///// 第二步:定义Notification Intent intent = new Intent(this, OtherActivity.class); //PendingIntent是待执行的Intent PendingIntent pi

  • Android开发之Notification通知用法详解

    本文实例讲述了Android开发之Notification通知用法.分享给大家供大家参考,具体如下: 根据activity的生命周期,在activity不显示时,会执行onStop函数(比如按下home键),所以你在onStop函数(按退出键除外)里面把notification放在通知栏里,再此显示时,把notification从通知栏里去掉.或者,只要程序在运行就一直显示通知栏图标. 下面对Notification类中的一些常量,字段,方法简单介绍一下: 常量: DEFAULT_ALL 使用所

  • Android中通知Notification使用实例(振动、灯光、声音)

    本文实例讲解了通知Notification使用方法,此知识点就是用作通知的显示,包括振动.灯光.声音等效果,分享给大家供大家参考,具体内容如下 效果图: MainActivity: import java.io.File; import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; im

随机推荐