• 保存到桌面  加入收藏  设为首页
安卓应用

安卓-新方法--通知Notification使用方法

时间:2016-10-18 12:47:40   作者:   来源:胜行天下   阅读:498   评论:0

最新的的设置通知见安卓疯狂讲义 p145  源码位置 codes\02\2.8\Notification\
Notification notify =  new Notification.Builder(this).setAutoCancel(true).setXXX( ).build();
 
以下是老版Notification:
 notification.defaults = Notification.DEFAULT_ALL;
   //如果不想进行那么多繁杂的这只,可以直接使用通知的默认效果
   //默认设置了声音,震动和灯光

点击后取消显示(老版)
notification.flags |= Notification.FLAG_AUTO_CANCEL;

importjava.io.File;
  
importandroid.app.Activity;
importandroid.app.Notification;
importandroid.app.NotificationManager;
importandroid.app.PendingIntent;
importandroid.content.Intent;
importandroid.graphics.Color;
importandroid.net.Uri;
importandroid.os.Bundle;
importandroid.view.View;
importandroid.view.View.OnClickListener;
importandroid.widget.Button;
  
publicclassMainActivity extendsActivity implementsOnClickListener {
  
 privateButton sendNotice;
  
 @Override
 protectedvoidonCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  sendNotice = (Button) findViewById(R.id.send_notice);
  sendNotice.setOnClickListener(this);
 }
  
 @Override
 publicvoidonClick(View v) {
  switch(v.getId()) {
  caseR.id.send_notice:
   NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  
   //创建notification对象来存储通知所需的各种信息
   //第一个参数为图标
   //第二个参数用于指定通知的ticker内容
   //第三个参数用于指定通知被创建的时间,以毫秒为单位
   Notification notification = newNotification(
     R.drawable.ic_launcher, " 通知栏 一闪而过",
     System.currentTimeMillis());
  
   //此处设置点击的activity的跳转
   //第一个参数依旧是Context
   //第二个参数一般用不到,所以用0表示取默认值
   //第三个参数就是一个Intent对象
   //FLAG_CANCEL_CURRENT:如果当前系统中已经存在一个相同的PendingIntent对象,
   // 那么就将先将已有的PendingIntent取消,然后重新生成一个PendingIntent对象。
   Intent intent = newIntent(this, NotificationActivity.class);
   PendingIntent pi = PendingIntent.getActivity(this, 0, intent,
     PendingIntent.FLAG_CANCEL_CURRENT);
  
   //设置通知的布局
   //第一个参数为Context
   //第二个参数用于指定通知的标题
   //第三个参数用于指定通知的征文内容
   //第四个参数用于传入PendingIntent对象,用于设置点击效果
   notification.setLatestEventInfo(this, "This is content title",
     "This is content text", pi);
  
//   //设置在通知发出的时候的音频
//   Uri soundUri = Uri.fromFile(new File("/system/media/audio/ringtones/Basic_tone.ogg"));
//   notification.sound = soundUri;
//
//   //设置手机震动
//   //第一个,0表示手机静止的时长,第二个,1000表示手机震动的时长
//   //第三个,1000表示手机震动的时长,第四个,1000表示手机震动的时长
//   //此处表示手机先震动1秒,然后静止1秒,然后再震动1秒
//   long[] vibrates = {0, 1000, 1000, 1000};
//   notification.vibrate = vibrates;
//
//   //设置LED指示灯的闪烁
//   //ledARGB设置颜色
//   //ledOnMS指定LED灯亮起的时间
//   //ledOffMS指定LED灯暗去的时间
//   //flags用于指定通知的行为
//   notification.ledARGB = Color.GREEN;
//   notification.ledOnMS = 1000;
//   notification.ledOffMS = 1000;
//   notification.flags = Notification.FLAG_SHOW_LIGHTS;
  
   //如果不想进行那么多繁杂的这只,可以直接使用通知的默认效果
   //默认设置了声音,震动和灯光
   notification.defaults = Notification.DEFAULT_ALL;
  
   //使用notify将通知显示出来
   //第一个参数是id,要爆炸为每个通知所指定的id是不同的
   //第二个参数就是Notification对象
   manager.notify(1, notification);
   break;
  default:
   break;
  }
 }
  
}

activity_main:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">
  
 <Button
  android:id="@+id/send_notice"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="发出通知"
  />
   
</LinearLayout>


NotificationActivity:


importandroid.app.Activity;
importandroid.app.NotificationManager;
importandroid.os.Bundle;
  
publicclassNotificationActivity extendsActivity {
  
 @Override
 protectedvoidonCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.notification_layout);
  
  //打开NotificationActivity这个Activity后把通知给关掉
  NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  manager.cancel(1);
 }
  
}



notification_layout:

<?xmlversion="1.0"encoding="utf-8"?>
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
   
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:textSize="24sp"
  android:text="这是通知点击后的界面"
  />
   
</RelativeLayout>





AndroidManifest:
<?xmlversion="1.0"encoding="utf-8"?>
 package="com.example.notificationtest"
 android:versionCode="1"
 android:versionName="1.0">
  
 <uses-sdk
  android:minSdkVersion="14"
  android:targetSdkVersion="19"/>
  
 <application
  android:allowBackup="true"
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme">
  <activity
   android:name="com.example.notificationtest.MainActivity"
   android:label="@string/app_name">
   <intent-filter>
    <actionandroid:name="android.intent.action.MAIN"/>
  
    <categoryandroid:name="android.intent.category.LAUNCHER"/>
   </intent-filter>
  </activity>
  <activityandroid:name=".NotificationActivity">
  </activity>
  
 </application>
  
</manifest>

有任何疑问或技术合作都可联系我

微信:yanfahezuo 【推荐】

QQ:596957738


相关评论

加我微信 596957738 (QQ同号)加我微信     QQ联系:596957738    地址:江苏省南京市浦口区

苏ICP备2023050353号

   

苏公网安备32011402010305号

江节胜的Gitee,江节胜的Git地址