Android之开发消息通知栏

 更新时间:2017年04月10日 09:34:31   作者:瞳瞳色丶轻烟的博客  
本文主要介绍了Android开发消息通知栏的相关知识。具有很好的参考价值。下面跟着小编一起来看下吧

一:先来效果图

二:实现步骤

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="edu.feicui.notification.MainActivity">
 <Button
 android:id="@+id/btn_create"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="发送通知"
 android:textSize="25sp" />
</LinearLayout>

2.activity的实现

package edu.feicui.notification;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.RemoteViews;
import butterknife.ButterKnife;
import butterknife.OnClick;
public class MainActivity extends AppCompatActivity {
 /**
 * 通知栏Notification
 */
 private NotificationManager mManager;
 private Notification mNotification;
 private PendingIntent mIntent;
 private String cll;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 cll = "今年27号过年哟!";
 ButterKnife.bind(this);
 }
 @Override
 public void onContentChanged() {
 super.onContentChanged();
 init();
 }
 private void init() {
 //初始化通知栏管理者
 mManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

 //意图数组
 Intent[] intents = {new Intent(this, NotificationAcitivity.class)};
 //待处理意图对象
 mIntent = PendingIntent.getActivities(this, 0, intents, 0);
 //消息栏通知对象
 mNotification = new Notification();
 }
 @OnClick(R.id.btn_create)
 public void create() {
 //设置在通知栏的消息图标
 mNotification.icon = R.mipmap.logo_new;
 //设置在通知栏的信息内容
 mNotification.tickerText = "重大消息";
 //设置默认的声音,此外还可以设置震动(需加入权限)
 mNotification.defaults = Notification.DEFAULT_SOUND;
 //添加灯光
// mNotification.defaults=Notification.DEFAULT_LIGHTS;
 //不能删除
 mNotification.flags = Notification.FLAG_NO_CLEAR;
 //设置下拉时的显示布局
 RemoteViews convertView = new RemoteViews(getPackageName(), R.layout.layout_content);
 convertView.setImageViewResource(R.id.img, R.mipmap.logo_new);
 convertView.setTextViewText(R.id.txt, cll);
 mNotification.contentView = convertView;
 mNotification.contentIntent = mIntent;
 //发送通知
 // 第一个参数唯一的标识该Notification,第二个参数就是Notification对象
 mManager.notify(1, mNotification);
 }
}

3.AndroidManifest添加权限

<uses-permission android:name="android.permission.VIBRATE"/>

4.跳转界面的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:gravity="center"
 android:orientation="vertical">
 <TextView
 android:id="@+id/txt"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:textColor="#ff0000"
 android:textSize="20dp"
 android:text="今年27号过年哟!" />
</LinearLayout>

5.跳转activity的实现

package edu.feicui.notification;
import android.app.Activity;
import android.app.NotificationManager;
import android.os.Bundle;
import android.widget.TextView;
/**
 * Created by Administrator on 2017-1-20.
 */
public class NotificationAcitivity extends Activity {
 private NotificationManager mManager;
 private int index = 2;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_notification);
 //初始化通知栏管理者
 mManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
 index = 2;
 mManager.cancelAll();
 }
}

简单粗暴实用,你值得拥有

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

相关文章

  • Android自定义带圆点的半圆形进度条

    Android自定义带圆点的半圆形进度条

    这篇文章主要为大家详细介绍了Android自定义带圆点的半圆形进度条,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-12-12
  • Android布局中margin与padding的区别及说明

    Android布局中margin与padding的区别及说明

    这篇文章主要介绍了Android布局中margin与padding的区别及说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-01-01
  • Android中获取设备的各种信息总结

    Android中获取设备的各种信息总结

    相信各位Android的开发者们都知道,现在几乎所有的app都需要获得设备信息,那么下面这篇文章就来详细说说获取设备信息的方法。
    2016-09-09
  • Android性能优化之图片大小,尺寸压缩综合解决方案

    Android性能优化之图片大小,尺寸压缩综合解决方案

    随着Android手机的越来越先进,给我们开发者而言传递的图片也是越来越大,这个时候我们可以对一些没有必要原图展示的图片进行压缩,这篇文章主要给大家介绍了关于Android性能优化之图片大小,尺寸压缩的综合解决方案,需要的朋友可以参考下
    2022-04-04
  • Android中的应用认领总结

    Android中的应用认领总结

    这篇文章主要介绍了Android中的应用认领总结,本文讲解了如何认领、对未签名包签名、需要替换的签名值、验证签名等内容,需要的朋友可以参考下
    2015-01-01
  • Android NestedScrolling嵌套滚动的示例代码

    Android NestedScrolling嵌套滚动的示例代码

    这篇文章主要介绍了Android NestedScrolling嵌套滚动的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-05-05
  • Android实现越界回弹效果

    Android实现越界回弹效果

    这篇文章主要介绍了Android实现越界回弹效果,支持水平和垂直方向,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-04-04
  • EditText属性深入解析

    EditText属性深入解析

    以下是对android中EditText的属性进行了详细的分析介绍,需要的朋友可以过来参考下
    2013-07-07
  • Android 自定义缩短Toast显示时间的实例代码

    Android 自定义缩短Toast显示时间的实例代码

    这篇文章主要介绍了Android 自定义缩短Toast显示时间,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-01-01
  • Android:如何编写“万能”的Activity

    Android:如何编写“万能”的Activity

    本文主要介绍了编写“万能”的Activity的方法与步骤,具有很好的参考价值,下面跟着小编一起来看下吧
    2017-01-01

最新评论