发布于 2016-05-10 22:26:00 | 186 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


这篇文章主要介绍了Android编程开发之NotiFication用法,结合实例形式较为详细的分析了NotiFication的功能、使用技巧与注意事项,需要的朋友可以参考下

本文实例讲述了Android编程开发之NotiFication用法。分享给大家供大家参考,具体如下:

notification就是通知的意思,安卓中指通知栏,一般用在电话,短信,邮件,闹钟铃声,在手机的状态栏上就会出现一个小图标,提示用户处理这个快讯,这时手从上方滑动状态栏就可以展开并处理这个快讯。

在帮助文档中,是这么说的, notification类表示一个持久的通知,将提交给用户使用NotificationManager。已添加的Notification.Builder,使其更容易构建通知。

notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户。它是看不见的程序组件(Broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。

先来区分以下状态栏和状态条的区别:

1、状态条就是手机屏幕最上方的一个条形状的区域;

在状态条有好多信息量:比如usb连接图标,手机信号图标,电池电量图标,时间图标等等;

2、状态栏就是手从状态条滑下来的可以伸缩的view;

在状态栏中一般有两类(使用FLAG_标记):

(1)正在进行的程序;           (2)是通知事件;

一个Notification传送的信息有:

1、一个状态条图标;

2、在拉伸的状态栏窗口中显示带有大标题,小标题,图标的信息,并且有处理该点击事件:比如调用该程序的入口类;

3、闪光,LED,或者震动;

下面对Notification类中的一些常量,字段,方法简单介绍一下:
常量:

DEFAULT_ALL                  使用所有默认值,比如声音,震动,闪屏等等
DEFAULT_LIGHTS            使用默认闪光提示
DEFAULT_SOUNDS         使用默认提示声音
DEFAULT_VIBRATE         使用默认手机震动

注意:在加入手机震动效果时一定要在项目清单文件中加入手机震动权限:

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

下面通过简单额小实例来具体实现notification功能:

MainActivity.java:


package com.example.lession16_notifi;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.res.Resources.NotFoundException;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity {
  private NotificationManager notificationManager;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // 第一步:通过getSystemService()方法得到NotificationManager对象;
    notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  }
  // 测试
  public void test1(View v) {
    showNotification("来短信了", "5557", "hello!", R.drawable.ic_launcher,
        R.drawable.ic_launcher);
  }
  // 第二步:对Notification的一些属性进行设置比如:内容,图标,标题,相应notification的动作进行处理等等;
  public void showNotification(String tickerText, String contentTitle,
      String contentText, int iconId, int notiId) {
    // 创建一个Notification
    Notification notification = new Notification();
    // 设置通知 消息 图标
    notification.icon = iconId;
    // 设置发出消息的内容
    notification.tickerText = tickerText;
    // 设置发出通知的时间
    notification.when = System.currentTimeMillis();
    // 设置显示通知时的默认的发声、振动、Light效果
    notification.defaults = Notification.DEFAULT_VIBRATE;// 振动
    // Notification notification = new Notification(R.drawable.ic_launcher,"有新的消息", System.currentTimeMillis());
    // 3步:PendingIntent android系统负责维护
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,getIntent(), 0);
    // 4步:设置更加详细的信息
    notification.setLatestEventInfo(this, contentTitle, contentText,pendingIntent);
    // 5步:使用notificationManager对象的notify方法 显示Notification消息 需要制定
    // Notification的标识
    notificationManager.notify(notiId, notification);
  }
  // 6步:使用notificationManager对象的cancelAll()方法取消
  public void clearNoti(View v) {
    notificationManager.cancelAll();// 清除所有
  }
}

布局文件activity_main.xml:


<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context=".MainActivity" >
  <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="22dp"
    android:onClick="test1"
    android:text="@string/text_notifi" />
  <Button
    android:id="@+id/button2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/button1"
    android:layout_below="@+id/button1"
    android:layout_marginTop="60dp"
    android:onClick="clearNoti"
    android:text="@string/text_clear" />
</RelativeLayout>

布局效果:

切记实现震动效果在清单文件中加入权限:

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

实现效果如下:

希望本文所述对大家Android程序设计有所帮助。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务