Notification(一)——基础知识使用示例

简介: main.xml如下:   another.xml如下:   MainActivity如下: import android.

main.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
   >

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button" 
        android:textSize="20sp"
        android:layout_centerInParent="true"
        />

</RelativeLayout>


 

another.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
   >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/newActivity" 
        android:textSize="20sp"
        android:layout_centerInParent="true"
        />

</RelativeLayout>


 

MainActivity如下:

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
/**
 * Demo描述:发送系统通知
 * 注意:
 * 1 PendingIntent的使用
 * 2 权限申请
 *
 */
public class MainActivity extends Activity {
    private Button mButton;
    private final int FIRST=1;
    private final int SECOND=2;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}
    private void init(){
    	mButton=(Button) findViewById(R.id.button);
    	mButton.setOnClickListener(new ButtonOnClickListenerImpl());
    }
    private class ButtonOnClickListenerImpl implements OnClickListener{
		@Override
		public void onClick(View v) {
          NotificationManager manager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);	
          Intent firstIntent=new Intent();
          PendingIntent firstPendingIntent=PendingIntent.getActivity(MainActivity.this, 0, firstIntent, 0);
          Notification firstNotification=new Notification();
          //设置通知的图标
          firstNotification.icon=R.drawable.ic_launcher;
          //设置状态栏的通知提示信息
          firstNotification.tickerText=getResources().getString(R.string.firstNotification_ticker);
          //设置通知发送时间
          firstNotification.when=System.currentTimeMillis();
          //采用系统默认的声音,震动,闪光灯
          firstNotification.defaults=Notification.DEFAULT_ALL;
          //打开应用程序后图标消失
          firstNotification.flags|=Notification.FLAG_AUTO_CANCEL;
          //设置通知的标题和内容,以及点击通知后的相应操作.此处无操作.
          //注意:如果将该方法最后一个参数设置为null,则报错
          firstNotification.setLatestEventInfo(MainActivity.this,
        		  getResources().getString(R.string.firstNotification_title),
        		  getResources().getString(R.string.firstNotification_content),
        		  firstPendingIntent);
          //发送第一个通知
          manager.notify(FIRST, firstNotification);
          
          
          Intent secondIntent=new Intent(MainActivity.this,AnotherActivity.class);
          PendingIntent secondPendingIntent=PendingIntent.getActivity(MainActivity.this, 0, secondIntent, 0);
          Notification secondNotification=new Notification();
          //设置通知的图标
          secondNotification.icon=R.drawable.ic_launcher;
          //设置状态栏的通知提示信息
          secondNotification.tickerText=getResources().getString(R.string.secondNotification_ticker);
          //设置通知发送时间
          secondNotification.when=System.currentTimeMillis();
          //采用系统默认的声音,震动,闪光灯
          secondNotification.defaults=Notification.DEFAULT_ALL;
          //打开应用程序后图标消失
          secondNotification.flags|=Notification.FLAG_AUTO_CANCEL;
          //设置通知的标题和内容,以及点击通知后的相应操作.此处为打开指定的Activity
          //注意:如果将该方法最后一个参数设置为null,则报错
          secondNotification.setLatestEventInfo(MainActivity.this,
        		  getResources().getString(R.string.secondNotification_title),
        		  getResources().getString(R.string.secondNotification_content), 
        		  secondPendingIntent);
         //发送第二个通知
          manager.notify(SECOND, secondNotification);
          
		}
    	
    }
}

 

AnotherActivity如下:

import android.app.Activity;
import android.os.Bundle;
public class AnotherActivity extends Activity {
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.another);
	}
}

 

相关文章
|
21天前
|
机器学习/深度学习 移动开发 JavaScript
Web实时通信的学习之旅:SSE(Server-Sent Events)的技术详解及简单示例演示
Web实时通信的学习之旅:SSE(Server-Sent Events)的技术详解及简单示例演示
100 0
|
6月前
|
API Android开发
Android高手进阶教程(十五)之---通过Location获取Address的使用!
Android高手进阶教程(十五)之---通过Location获取Address的使用!
61 1
|
3月前
|
JSON Go 数据格式
Go - 使用工具生成易读的 Protocol 文档
Go - 使用工具生成易读的 Protocol 文档
23 1
|
JavaScript
Notification.description(ant-design) 和 $notify.message(element-ui) 通知内容自定义
Notification.description(ant-design) 和 $notify.message(element-ui) 通知内容自定义
418 0
[ROS通信机制] ---话题通信之自定义msg类型
[ROS通信机制] ---话题通信之自定义msg类型
143 0
|
JSON 前端开发 数据格式
前端hook项目pc总结笔记-ant design中利用json server模拟请求
前端hook项目pc总结笔记-ant design中利用json server模拟请求
79 0
|
JSON jenkins 持续交付
python接口自动化(十一)--发送post【data】(详解)
前面登录博客园的是传 json 参数,由于其登录机制的改变没办法演示,然而在工作中有些登录不是传 json 的,如 jenkins 的登录,这里小编就以jenkins 登录为案例,传 data 参数,给各位童鞋详细演练一下。
231 0
python接口自动化(十一)--发送post【data】(详解)
Go ---Go语言高级编程中订阅/发布模型例子解析
Go ---Go语言高级编程中订阅/发布模型例子解析
|
存储 安全 Go
Go 开发常用操作技巧--channel
在 Go 语言中,提倡使用通信来共享内存,而不是通过共享内存来通信,这里的通信就是通过 channel 发送接收消息的方式进行数据传递,而不是通过修改同一个变量。
168 0
Go 开发常用操作技巧--channel
|
iOS开发
Notification的用法
Notification的用法
233 0
Notification的用法