Android UI - Notification

Notification

Notification,通知。Android 里的通知设置无非下面几步:

  1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置;
  2. 创建 Notification 对象,并对其进行设置;
  3. 创建 NotificationManager 对象;
  4. 使用 NotificationManager 的 notify 方法来发送通知。

Notification 里的相关概念

直接上图,图片最直观

SmallIcon: 显示在状态栏,通知的图标
Ticker: 显示在状态栏,通知的提示文字(注意,Ticker 在 5.0 及以上的版本是不显示的,具体请看这篇博客 安卓 Notification 使用方法小结
LargeIcon: 显示在下拉通知栏,通知的图标,为 Bitmap 类型,不设置时默认使用 SmallIcon 的图标
ContentTitle: 显示在下拉通知栏,通知的标题
ContentText: 显示在下拉通知栏,通知的内容

普通的通知

通知的最基本方法

1. 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.monkeychan.notificationtest.MainActivity" >

    <Button
        android:id="@+id/base_notification"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="简单的通知" 
        android:onClick="notificationClick"/>

</LinearLayout>

2. Java 代码:

public class MainActivity extends Activity {

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

    public void notificationClick(View view) {
        
        // 1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置
        NotificationCompat.Builder builder = new Builder(MainActivity.this)
                .setSmallIcon(R.drawable.ic_launcher) // 设置通知的图标
                .setTicker("马云发来一条消息").setContentTitle("发财秘笈") // 设置标题的标题
                .setContentText("想发财吗?洗洗睡吧!啊哈哈哈哈"); // 设置的标题内容

        // 2. 创建一个 Notification 对象,并对其进行设置
        // 注意:当 NotificationCompat.Builder 对象设置完成之后才创建,
        // 否则会导致之后 NotificationCompat.Builder 对象的设置无效
        Notification notification = builder.build();
        notification.defaults = Notification.DEFAULT_ALL; // 设置通知震动和声音为默认

        // 3. 创建一个 NotificationManager 对象来获取通知管理器
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        // 4. 使用 NotificationManager 的 notify 方法来发送通知
        manager.notify(101, notification);
    }

}

3. 效果演示(基于 4.2.2 虚拟机演示):

带跳转的通知

点击通知后能跳转到某个界面

基本上与普通的通知一样,只是 Java 代码部分做了一点修改。

1. XML 布局文件:

  1. 主布局文件:
<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.monkeychan.notificationtest.MainActivity" >

    <Button
        android:id="@+id/intent_notification"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="带跳转的通知"
        android:onClick="notificationClick"/>

</LinearLayout>
  1. 主界面的的 Java 代码:
public class MainActivity extends AppCompatActivity {

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

    public void notificationClick(View view) {

        // 1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置
        NotificationCompat.Builder builder = new NotificationCompat.Builder(MainActivity.this)
                .setSmallIcon(R.drawable.ic_launcher) // 设置通知的图标
                .setTicker("马云发来一条消息") // 由于我是在 5.0 以上的机子演示,所以此处无效
                .setContentTitle("发财秘笈") // 设置标题的标题
                .setContentText("想发财吗?赶紧点我吧!"); // 设置的标题内容

        // 通知中绑定跳转的 Activity 的具体步骤:
        //1) 创建一个 Intent 对象,声明我们要跳转到的Activity
        Intent intent = new Intent(MainActivity.this, SecondActivity.class);

        //2) 创建一个 PendingIntent 对象
        PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this,
                1, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        //3) 调用 setContentIntent 方法,将通知与 PendingIntent 绑定起来
        builder.setContentIntent(pendingIntent);

        // 2. 创建一个 Notification 对象,并对其进行设置
        // 注意:当 NotificationCompat.Builder 对象设置完成之后才创建,
        // 否则会导致之后 NotificationCompat.Builder 对象的设置无效
        Notification notification = builder.build();
        notification.defaults = Notification.DEFAULT_ALL; // 设置通知震动和声音为默认


        // 3. 创建一个 NotificationManager 对象来获取通知管理器
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        // 4. 使用 NotificationManager 的 notify 方法来发送通知
        manager.notify(102, notification);
    }

}

上面关于 PendingIntent 的部分,具体可参考这里 Intent和PendingIntent的区别Android:PendingIntent的FLAG_CANCEL_CURRENT和FLAG_UPDATE_CURRENTAndroid中pendingIntent的深入理解

  1. 然后是跳转后的界面的布局文件:
<?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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:gravity="center">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="还是洗洗睡吧!啊哈哈哈哈!"
        android:textSize="24sp"
        android:textColor="#FF4500"/>

</RelativeLayout>
  1. 跳转后的界面的 Java 代码:
public class SecondActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);
        setTitle("跳转后的界面"); // 设置 label 标签的标题
    }
}
  1. 最后,别忘了在 AndroidManifest.xml 文件里注册 Activity!!!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="net.monkeychan.notificationtest">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- 不要忘了注册!!! -->
        <activity android:name=".SecondActivity"></activity>
    </application>

</manifest>
  1. 效果演示:
  • 状态栏:

从上面可以看到,状态栏并不显示 Ticker。

  • 下拉通知栏:
  • 点击通知之后跳转:

大视图的通知

大视图的通知有三种类型,分别是 NotificationCompat.InboxStyle,NotificationCompat.BigTextStyle 和 NotificationCompat.BigPictureStyle。这里介绍的是 NotificationCompat.BigPictureStyle。和普通的通知基本步骤一样,只是 Java 代码有点修改而已。

1. 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.monkeychan.notificationtest.MainActivity" >

    <Button
        android:id="@+id/bitmap_notification"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="大视图的通知"
        android:onClick="notificationClick"/>

</LinearLayout>

2. Java 代码:

public class MainActivity extends AppCompatActivity {

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

    public void notificationClick(View view) {

        // 1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置
        NotificationCompat.Builder builder = new NotificationCompat.Builder(MainActivity.this)
                .setSmallIcon(R.drawable.ic_launcher) // 设置通知的图标
                .setTicker("马云发来一条消息") // 由于我是在 5.0 以上的机子演示,所以此处无效
                .setContentTitle("发财秘笈") // 设置标题的标题
                .setContentText("想发财吗?赶紧点我吧!"); // 设置的标题内容

        // 创建大视图通知的步骤:
        // 1) 创建一个 Bitmap 对象
        Bitmap bitMap = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);

        // 2) 创建一个 NotificationCompat.BigPictureStyle 对象
        NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle();
        bigPictureStyle.bigPicture(bitMap);

        // 3) 设置大视图样式
        builder.setStyle(bigPictureStyle);

        // 2. 创建一个 Notification 对象,并对其进行设置
        // 注意:当 NotificationCompat.Builder 对象设置完成之后才创建,
        // 否则会导致之后 NotificationCompat.Builder 对象的设置无效
        Notification notification = builder.build();
        notification.defaults = Notification.DEFAULT_ALL; // 设置通知震动和声音为默认


        // 3. 创建一个 NotificationManager 对象来获取通知管理器
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        // 4. 使用 NotificationManager 的 notify 方法来发送通知
        manager.notify(103, notification);
    }

}

3. 效果演示:

  • 主界面:
  • 下拉通知栏:

带进度条的通知

常用于文件的下载,在状态栏显示文件下载进度。

1. 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.monkeychan.notificationtest.MainActivity" >

    <Button
        android:id="@+id/progress_notification"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="带进度条的通知"
        android:onClick="notificationClick"/>

</LinearLayout>

2. Java 代码:

package net.monkeychan.notificationtest;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends AppCompatActivity {

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

    public void notificationClick(View view) {

        // 1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置
        NotificationCompat.Builder builder = new NotificationCompat.Builder(MainActivity.this)
                .setSmallIcon(R.drawable.ic_launcher) // 设置通知的图标
                .setContentTitle("文件下载") // 设置标题的标题
                .setContentText("文件下载中..."); // 设置的标题内容

        // 创建带进度条的通知的步骤:
        //   设置进度条:
        //      第一个参数为最大值,
        //      第二个参数为当前进度,
        //      第三个参数表示不确定性,如果为true,则进度不确定,会显示动画,
        //      如果为false,就按照我们设定的进度显示,不会显示
        builder.setProgress(100, 50, true);

        builder.setOngoing(true); // 设置是否为进行中的通知,为 true 时不可清除,为 false 时可以清除

        // 2. 创建一个 Notification 对象,并对其进行设置
        // 注意:当 NotificationCompat.Builder 对象设置完成之后才创建,
        // 否则会导致之后 NotificationCompat.Builder 对象的设置无效
        Notification notification = builder.build();
        notification.defaults = Notification.DEFAULT_ALL; // 设置通知震动和声音为默认


        // 3. 创建一个 NotificationManager 对象来获取通知管理器
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        // 4. 使用 NotificationManager 的 notify 方法来发送通知
        manager.notify(104, notification);
    }

}

3. 效果演示:

  • 主界面:
  • 下拉通知栏:

自定义的通知

即使用我们的自定义布局。

1. 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="net.monkeychan.notificationtest.MainActivity" >

    <Button
        android:id="@+id/custom_notification"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="自定义的通知"
        android:onClick="notificationClick"/>

</LinearLayout>

2. 自定义布局的 XML 文件:

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

    <ImageView
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_marginLeft="16dp"
        android:src="@drawable/ic_launcher"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="24dp"
        android:text="自定义通知"
        android:textSize="16sp"
        android:textColor="#FF4500"/>

</LinearLayout>

3. Java 代码:

public class MainActivity extends AppCompatActivity {

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

    public void notificationClick(View view) {

        // 1. 创建一个 NotificationCompat.Builder 对象,并对其进行设置
        NotificationCompat.Builder builder = new NotificationCompat.Builder(MainActivity.this)
                .setSmallIcon(R.drawable.ic_launcher);

        // 创建带自定义通知的步骤:
        //   创建一个 RemoteViews 对象:
        //      第一个参数为当前包名,
        //      第二个参数为要传入的自定义布局,
        RemoteViews rv = new RemoteViews(getPackageName(), R.layout.custom);

        // 2. 创建一个 Notification 对象,并对其进行设置
        // 注意:当 NotificationCompat.Builder 对象设置完成之后才创建,
        // 否则会导致之后 NotificationCompat.Builder 对象的设置无效
        Notification notification = builder.build();
        notification.contentView = rv; // 调用 Notification 对象的 contentView 方法来传入自定义的布局
        notification.defaults = Notification.DEFAULT_ALL; // 设置通知震动和声音为默认

        // 3. 创建一个 NotificationManager 对象来获取通知管理器
        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        // 4. 使用 NotificationManager 的 notify 方法来发送通知
        manager.notify(105, notification);
    }

}

4. 效果演示:

  • 主界面:
  • 下拉通知栏:

总结

其实 Notification 的设置步骤都差不多,只是某些方面有些许差别,整体还是一样的。当然,以上都是简单的,Notification 还有更多的用法,尤其是自定义这部分。


参考资料:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容