在消息通知的时候,我们经常用到两个控件Notification和Toast。特别是重要的和需要长时间显示的信息,用Notification最合适不过了。他可以在顶部显示一个图标以标示有了新的通知,当我们拉下通知栏的时候,可以看到详细的通知内容。
最典型的应用就是未看短信和未接来电的显示,还有QQ微信,我们一看就知道有一个未接来电或者未看短信,收到QQ离线信息。同样,我们也可以自定义一个Notification来定义我们自己的程序想要传达的信息。
Notification我把他分为两种,一种是默认的显示方式,另一种是自定义的,今天为大家讲述默认的显示方式:
1、程序框架结构图如下
2、布局文件 main.xml 源码如下
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" > <TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:gravity="center" androID:textcolor="#EEE" androID:textStyle="bold" androID:textSize="25sp" androID:text="NotificationDemo实例" /> <button androID:ID="@+ID/btnSend" androID:text="send notification" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_gravity="center"/> </linearLayout>
3、MainActivity.java源码如下:
package com.andyIDea.notification; import androID.app.Activity; import androID.content.Intent; import androID.os.Bundle; import androID.vIEw.VIEw; import androID.Widget.button; public class MainActivity extends Activity { private button btnSend; //定义broadcastReceiver的action private static final String NotificationDemo_Action = "com.andyIDea.notification.NotificationDemo_Action"; /** Called when the activity is first created. */ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); btnSend = (button)findVIEwByID(R.ID.btnSend); btnSend.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { Intent intent = new Intent(); intent.setAction(NotificationDemo_Action); sendbroadcast(intent); } }); } }
4、布局文件 secondlayou.xml 源码如下:
<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"> <TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:gravity="center" androID:textcolor="#EEE" androID:textStyle="bold" androID:textSize="25sp" androID:text="显示通知界面" /> <button androID:ID="@+ID/btnCancel" androID:text="cancel notification" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_gravity="center" /> </linearLayout>
5、SecondActivity.java源码如下:
package com.andyIDea.notification; import androID.app.Activity; import androID.app.Notification; import androID.app.notificationmanager; import androID.app.PendingIntent; import androID.content.Intent; import androID.os.Bundle; import androID.vIEw.VIEw; import androID.Widget.button; public class SecondActivity extends Activity { private button btnCancel; //声明Notification private Notification notification; //声明notificationmanager private notificationmanager mNotification; //标识Notification的ID private static final int ID = 1; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.secondlayout); btnCancel = (button)findVIEwByID(R.ID.btnCancel); //怎样获得notificationmanager的实例? String service = NOTIFICATION_SERVICE; mNotification = (notificationmanager)getSystemService(service); //获得Notification的实例 notification = new Notification(); //设置该图标 会在状态栏显示 int icon = notification.icon = androID.R.drawable.stat_sys_phone_call; //设置提示信息 String tickerText = "Test Notification"; //设置显示时间 long when = System.currentTimeMillis(); notification.icon = icon; notification.tickerText = tickerText; notification.when = when; Intent intent = new Intent(this,MainActivity.class); PendingIntent pi = PendingIntent.getActivity(this,intent,0); notification.setLatestEventInfo(this,"消息","SMS AndroID",pi); mNotification.notify(ID,notification); btnCancel.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { mNotification.cancel(ID); //--->取消通知 } }); } }
6、NotificationReceiver.java源码如下:
package com.andyIDea.notification; import com.andyIDea.notification.SecondActivity; import androID.content.broadcastReceiver; import androID.content.Context; import androID.content.Intent; public class NotificationReceiver extends broadcastReceiver { @OverrIDe public voID onReceive(Context context,Intent intent) { //实例化Intent Intent i = new Intent(); //在新任务中启动Activity i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //设置Intent启动的组件名称 i.setClass(context,SecondActivity.class); //启动Activity,显示通知 context.startActivity(i); } }
7、程序运行效果如下:
以上就是针对AndroID中Notification使用方法进行的详细介绍,希望对大家的学习有所启发,帮助大家更好地学习AndroID软件编程。
总结以上是内存溢出为你收集整理的详解Android中Notification的使用方法全部内容,希望文章能够帮你解决详解Android中Notification的使用方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)