Android[初级教程]第十二章 Notification的应用

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 02:13 点击:

这一章节,我们来学习Notification的应用,很多人问Notification是什么东东啊?我打个比方吧,还是以西游记来说:唐僧被妖怪们抓住了,那悟空得知道是哪个妖怪抓住了他师傅,他得变成一些动物(苍蝇或蚊子)去通知他师傅啊,通知唐僧悟空来救他了,这里通知就是Notification,那唐僧知道了,他就放心了,安心等着悟空来救.呵呵,让我看一下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="match_parent" 
    android:layout_height="match_parent"> 
    <Button android:text="通知师傅悟空来救他了" android:id="@+id/wukong" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> 
    <Button android:text="通知师傅八戒来救他了" android:id="@+id/bajie" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> 
    <Button android:text="通知师傅沙僧来救他了" android:id="@+id/shaseng" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> 
    <Button android:text="取消通知" android:layout_width="wrap_content" 
        android:layout_height="wrap_content" android:id="@+id/notify_cancal"/> 
</LinearLayout> 

这里面没有什么特别的,只是定义了四个按钮,然后主Activity.java

 
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 NotificationDemo extends Activity 

    private final static int NOTIFYCATION_ID = 0x11; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) 
    { 
        // TODO Auto-generated method stub www.2cto.com
        super.onCreate(savedInstanceState); 
 
        setContentView(R.layout.notification); 
         
        //查找main.xml中的Button控件 
        Button wukong = (Button) findViewById(R.id.wukong); 
        wukong.setOnClickListener(new ClickEvent()); 
 
        Button bajie = (Button) findViewById(R.id.bajie); 
        bajie.setOnClickListener(new ClickEvent()); 
 
        Button shaseng = (Button) findViewById(R.id.shaseng); 
        shaseng.setOnClickListener(new ClickEvent()); 
         
        Button notify_cancal = (Button)findViewById(R.id.notify_cancal); 
        notify_cancal.setOnClickListener(new ClickEvent()); 
    } 

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Android 完全退出程序
      • 原创:Android应用开发-Andorid歌词秀,含源码
      • android 屏幕保护
      • Android手机软件汉化教程---第四课 dex文件汉化
      • 众多Android 开源项目推荐,给力工作给力学习
      • Android Audio代码分析4
      • Android得到已安装的应用程序信息!
      • Android开发者指南(29) —— USB Host and Accessory
      • Android成长的幕后推手:工程师鲁宾
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1