效果图:

主界面只有一个按钮就不上文件了

通知栏显示所用到的布局文件content_view.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="#00000000"
  6. android:orientation="vertical"
  7. android:padding="5dp">
  8. <ImageView
  9. android:id="@+id/content_view_image"
  10. android:layout_width="25dp"
  11. android:layout_height="25dp"
  12. android:src="@drawable/logo"
  13. />
  14. <TextView
  15. android:id="@+id/content_view_text1"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="0%"
  19. android:textColor="#000000"
  20. android:layout_toRightOf="@id/content_view_image"
  21. android:layout_centerHorizontal="true"
  22. android:layout_marginTop="5dp"
  23. android:layout_marginLeft="15dp"
  24. />
  25. <ProgressBar
  26. android:id="@+id/content_view_progress"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. style="@android:style/Widget.ProgressBar.Horizontal"
  30. android:max="100"
  31. android:layout_below="@id/content_view_image"
  32. android:layout_marginTop="4dp"
  33. />
  34. </RelativeLayout>

主运行类:

    1. package yyy.testandroid4;
    2. import java.util.Timer;
    3. import java.util.TimerTask;
    4. import android.app.Activity;
    5. import android.app.AlertDialog.Builder;
    6. import android.app.Notification;
    7. import android.app.NotificationManager;
    8. import android.app.PendingIntent;
    9. import android.content.DialogInterface;
    10. import android.content.Intent;
    11. import android.content.pm.PackageManager.NameNotFoundException;
    12. import android.os.Bundle;
    13. import android.os.Handler;
    14. import android.os.Message;
    15. import android.view.View;
    16. import android.view.View.OnClickListener;
    17. import android.widget.Button;
    18. import android.widget.RemoteViews;
    19. import android.widget.Toast;
    20. public class TestAndroid4Activity extends Activity {
    21. private Handler handler = new Handler(){
    22. @Override
    23. public void handleMessage(Message msg) {
    24. // TODO Auto-generated method stub
    25. super.handleMessage(msg);
    26. switch (msg.what) {
    27. case 0:
    28. notif.contentView.setTextViewText(R.id.content_view_text1, len+"%");
    29. notif.contentView.setProgressBar(R.id.content_view_progress, 100, len, false);
    30. manager.notify(0, notif);
    31. break;
    32. case 1:
    33. Toast.makeText(TestAndroid4Activity.this, "下载完成", 0).show();
    34. break;
    35. default:
    36. break;
    37. }
    38. }
    39. };
    40. private Button update,cancel;
    41. private int localVersion,serverVersion;
    42. private int len;
    43. private NotificationManager manager;
    44. private Notification notif;
    45. /** Called when the activity is first created. */
    46. @Override
    47. public void onCreate(Bundle savedInstanceState) {
    48. super.onCreate(savedInstanceState);
    49. setContentView(R.layout.main);
    50. update = (Button) findViewById(R.id.update);
    51. update.setOnClickListener(new OnClickListener() {
    52. @Override
    53. public void onClick(View arg0) {
    54. // TODO Auto-generated method stub
    55. //点击通知栏后打开的activity
    56. Intent intent = new Intent(TestAndroid4Activity.this,OtherActivity.class);
    57. PendingIntent pIntent = PendingIntent.getActivity(TestAndroid4Activity.this, 0, intent, 0);
    58. manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    59. notif = new Notification();
    60. notif.icon = R.drawable.logo;
    61. notif.tickerText = "新通知";
    62. //通知栏显示所用到的布局文件
    63. notif.contentView = new RemoteViews(getPackageName(), R.layout.content_view);
    64. notif.contentIntent = pIntent;
    65. manager.notify(0, notif);
    66. new DownLoadThread().start();
    67. }
    68. });
    69. }
    70. }
    71. private class DownLoadThread extends Thread{
    72. private Timer timer = new Timer();
    73. @Override
    74. public void run() {
    75. // TODO Auto-generated method stub
    76. super.run();
    77. timer.schedule(new TimerTask() {
    78. @Override
    79. public void run() {
    80. // TODO Auto-generated method stub
    81. Message msg = new Message();
    82. msg.what = 0;
    83. msg.obj = len;
    84. handler.sendMessage(msg);
    85. if(len == 100){
    86. timer.cancel();
    87. handler.sendEmptyMessage(1);
    88. }
    89. }
    90. }, 0, 1000);
    91. len = 0;
    92. try {
    93. while(len < 100){
    94. len++;
    95. Thread.sleep(1000);
    96. }
    97. } catch (InterruptedException e) {
    98. // TODO Auto-generated catch block
    99. e.printStackTrace();
    100. }
    101. }
    102. }
    103. }

android-带进度条的系统通知栏消息的更多相关文章

  1. 025 Android 带进度条的对话框(ProgressDialog)

    1.ProgressDialog介绍 ProgressDialog可以在当前界面弹出一个置顶于所有界面元素的对话框,同样具有屏蔽其他控件的交互能力,用于提示用户当前操作正在运行,让用户等待: 2.应用 ...

  2. Android带进度条的文件上传,使用AsyncTask异步任务

    最近项目中要做一个带进度条的上传文件的功能,学习了AsyncTask,使用起来比较方便,将几个方法实现就行,另外做了一个很简单的demo,希望能对大家有帮助,在程序中设好文件路径和服务器IP即可. A ...

  3. 高仿手机QQ音乐之——Android带进度条的开关

    最新版的手机QQ音乐体验确实不错,发现首页播放按钮能够显示歌曲当前进度条.认为挺有新意.效果例如以下: 自己琢磨了下.能够用自己定义组件来实现,试着做了一下.效果例如以下: 整理了下思路.大概设计流程 ...

  4. Android更新带进度条的通知栏

    在网上查询了下.Android版本号更新通知栏带进度条,醉了,基本都是复制过来.有的代码不全,连源代码下载都没有.有下载也须要积分,还不能用,真黑心啊!!之前自己也写过自己定义通知栏Notificat ...

  5. Android -- 自定义带进度条的按钮

    1. 实现了一个带进度条的按钮,完成后显示提示信息,并设置按钮为不可再次被点击

  6. [Delphi]带进度条的ListView

    带进度条的ListView unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, C ...

  7. android多线程进度条

    多线程实现更新android进度条. 实例教程,详细信息我已经注释   android多线程进度条   01package com.shougao.hello; 02 03import android ...

  8. 自定义带进度条的WebView , 增加获取web标题和url 回掉

    1.自定义ProgressWebView package com.app.android05; import android.content.Context; import android.graph ...

  9. android 自定义进度条颜色

    android 自定义进度条颜色 先看图 基于产品经理各种自定义需求,经过查阅了解,下面是自己对Android自定义进度条的学习过程!   这个没法了只能看源码了,还好下载了源码, sources\b ...

随机推荐

  1. USB 3.1 Type-C

    [時報記者任珮云台北報導]微軟.英特爾.蘋果今年將新款PC介面升級至USB 3.1規格,Wintel陣營今年新款PC產品亦將全面採用USB 3.1介面,里昂證出具最新的報告指出,在新趨勢帶動下,台廠的 ...

  2. firemonkey打开子窗体(匿名回调函数)

    procedure TForm1.Button1Click(Sender: TObject);varChildForm: TForm2;beginChildForm := TForm2.Create( ...

  3. POJ 3740 DLX

    题意:给你一个01矩阵,然后求是否存在选择一些行,使得每一列的1的个数都为1. 思路:貌似朴素的DFS也可以,加点剪枝就可以过.这里贴个DLX的模版. 推荐博客:http://www.cppblog. ...

  4. How Many Maos Does the Guanxi Worth

    How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 512000/5 ...

  5. Android开发之自定义Spinner样式的效果实现(源代码实现)

    android系统自带的Spinner样式是远远满足不了我们实际开发过程中对Spinner UI风格的要求,因此我们肯定需要为了切合整个应用的风格,修改我们的Spinner样式.系统给我们提供了两种常 ...

  6. JAVA装饰器模式

    Java程序员们应该对java.io对不会陌生,因为java.io包采用了装饰器模式. 一.定义: Decorator装饰器,顾名思义,就是动态地给一个对象添加一些额外的职责,就好比为房子进行装修一样 ...

  7. SQL整理2

    数据库的概念 结构化查询语言:structured query language 简称:SQL 数据库管理系统:database management system 简称:DBMS 数据库管理员:da ...

  8. C#核编之System.Environment类

    在前面的例子中用来了Environment.GetCommandLineArgs()这个方法,这个方法就是获取用户的命令行输入,是Environment类的方法之一,该方法的返回值是string[]  ...

  9. Linux学习之/etc/init.d/functions详解

    转自:http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=28773997&id=3996557 /etc/init.d/f ...

  10. QF——UI之几种常用的隐藏键盘的方法

    怎么在填写完UITextField之后,点击空白处,隐藏软键盘. 下面两个方法都可以隐藏键盘 [tf resignFirstResponder]; 停止textfield的第一响应者 [self.vi ...