显示通知——Notification

作者:追风剑情 发布于:2015-8-16 17:21 分类:Android

一、在AndroidManifest.xml中添加权限

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

二、创建活动NotificationsActivity

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <Button
  9. android:id="@+id/btn_displaynotif"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:text="Display Notification"
  13. android:onClick="onClick" />
  14. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.app.Notification;
  5. import android.app.NotificationManager;
  6. import android.app.PendingIntent;
  7. import android.content.Intent;
  8. import android.os.Bundle;
  9. import android.view.View;
  10.  
  11. public class NotificationsActivity extends Activity {
  12.  
  13. int notificationID = 1;
  14. @Override
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_notifications);
  18. }
  19. public void onClick(View view)
  20. {
  21. displayNotification();
  22. }
  23. protected void displayNotification()
  24. {
  25. //当用户从通知列表中选择了一个通知时,这个意图将被用来启动NofificationView活动。
  26. Intent i = new Intent(this, NotificationView.class);
  27. i.putExtra("notificationID", notificationID);
  28. //PendingIntent对象可以代表应用程序帮助您在后面某个时候执行一个动作,而不用考虑应用程序是否正在运行。
  29. PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, i, 0);
  30. NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  31. Notification notif = new Notification(
  32. R.drawable.ic_launcher,
  33. "Reminder: Meeting starts in 5 minutes",//顶部滚动信息
  34. System.currentTimeMillis());
  35. //正文
  36. CharSequence from = "System Alarm";
  37. CharSequence message = "Meeting with customer at 3pm...";
  38. notif.setLatestEventInfo(this, from, message, pendingIntent);
  39. //100毫秒后开始振动,振动250毫秒后停止,再过100毫秒后再次振动500毫秒
  40. notif.vibrate = new long[] {100, 250, 100, 500};
  41. nm.notify(notificationID, notif);
  42. }
  43. }

三、创建活动NotificationView

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <TextView
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="Here are the details for the notification..." />
  12. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.app.NotificationManager;
  5. import android.os.Bundle;
  6. /**
  7. * 用户点击通知后,此活动被启动。
  8. */
  9. public class NotificationView extends Activity {
  10.  
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.activity_notification_view);
  15. //清除通知。
  16. NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  17. nm.cancel(getIntent().getExtras().getInt("notificationID"));
  18. }
  19. }

运行效果

111111.png


222222.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号