Android中通知Notification使用实例(振动、灯光、声音)

 更新时间:2016年01月08日 14:52:30   作者:xu佳佳  
这篇文章主要介绍了Android中通知Notification使用实例,实现振动,灯光,声音等效果,感兴趣的小伙伴们可以参考一下

本文实例讲解了通知Notification使用方法,此知识点就是用作通知的显示,包括振动、灯光、声音等效果,分享给大家供大家参考,具体内容如下

效果图:



MainActivity:

import java.io.File; 
 
import android.app.Activity; 
import android.app.Notification; 
import android.app.NotificationManager; 
import android.app.PendingIntent; 
import android.content.Intent; 
import android.graphics.Color; 
import android.net.Uri; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
 
public class MainActivity extends Activity implements OnClickListener { 
 
 private Button sendNotice; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  sendNotice = (Button) findViewById(R.id.send_notice); 
  sendNotice.setOnClickListener(this); 
 } 
 
 @Override 
 public void onClick(View v) { 
  switch (v.getId()) { 
  case R.id.send_notice: 
   NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 
 
   //创建notification对象来存储通知所需的各种信息 
   //第一个参数为图标 
   //第二个参数用于指定通知的ticker内容 
   //第三个参数用于指定通知被创建的时间,以毫秒为单位 
   Notification notification = new Notification( 
     R.drawable.ic_launcher, "This is ticker text", 
     System.currentTimeMillis()); 
 
   //此处设置点击的activity的跳转 
   //第一个参数依旧是Context 
   //第二个参数一般用不到,所以用0表示取默认值 
   //第三个参数就是一个Intent对象 
   //FLAG_CANCEL_CURRENT:如果当前系统中已经存在一个相同的PendingIntent对象, 
   // 那么就将先将已有的PendingIntent取消,然后重新生成一个PendingIntent对象。 
   Intent intent = new Intent(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" 
 xmlns:tools="http://schemas.android.com/tools" 
 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:

import android.app.Activity; 
import android.app.NotificationManager; 
import android.os.Bundle; 
 
public class NotificationActivity extends Activity { 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.notification_layout); 
 
  //打开NotificationActivity这个Activity后把通知给关掉 
  NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 
  manager.cancel(1); 
 } 
 
} 

notification_layout:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns: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:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
 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> 
    <action android:name="android.intent.action.MAIN" /> 
 
    <category android:name="android.intent.category.LAUNCHER" /> 
   </intent-filter> 
  </activity> 
  <activity android:name=".NotificationActivity" > 
  </activity> 
 
 </application> 
 
</manifest> 

相关文章

  • 详解android是如何管理内存的

    详解android是如何管理内存的

    这篇文章主要介绍了详解android是如何管理内存的,帮助大家更好的理解和学习使用Android,感兴趣的朋友可以了解下
    2021-03-03
  • Android判断登录情况

    Android判断登录情况

    这篇文章主要介绍了Android判断登录情况,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
    2019-08-08
  • 记录Android studio JNI开发的三种方式(推荐)

    记录Android studio JNI开发的三种方式(推荐)

    JNI (Java Native Interface)是一套编程接口,用来实现Java代码和其他语言(c、C++或汇编)进行交互。下面通过本文给大家讲解Android studio JNI开发的三种方式,需要的朋友参考下吧
    2017-12-12
  • 聊聊Android中的事件分发机制

    聊聊Android中的事件分发机制

    这篇文章主要介绍了Android中的事件分发机制的相关资料,帮助大家更好的理解和学习使用Android,感兴趣的朋友可以了解下
    2021-04-04
  • android中Webview实现截屏三种方式小结

    android中Webview实现截屏三种方式小结

    本篇文章主要介绍了android Webview实现截屏,主要详解了3种方式,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-03-03
  • Android app启动节点与上报启动实例详解

    Android app启动节点与上报启动实例详解

    系统的启动过程非常复杂,下面这篇文章主要给大家介绍了关于Android app启动节点与上报启动的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2022-04-04
  • 老生常谈Android HapticFeedback(震动反馈)

    老生常谈Android HapticFeedback(震动反馈)

    下面小编就为大家带来一篇老生常谈Android HapticFeedback(震动反馈)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04
  • 详解Android中Intent传递对象给Activity的方法

    详解Android中Intent传递对象给Activity的方法

    这篇文章主要介绍了Android中Intent传递对象给Activity的方法,文章中对Activity的生命周期等知识先作了简要的介绍,需要的朋友可以参考下
    2016-04-04
  • Gradle的安装和环境变量的配置详解

    Gradle的安装和环境变量的配置详解

    这篇文章主要介绍了Gradle的安装和环境变量的配置详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-07-07
  • android dialog自定义实例详解

    android dialog自定义实例详解

    简单的自定义dialog,该dialog具备以下功能:有一个窗口可以显示文章、根据需求显示,有需要的朋友可以参考下
    2012-12-12

最新评论