android-带进度条的系统通知栏消息

效果图:

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

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

[java] view plaincopy

  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>

主运行类:

[java] view plaincopy

    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. }
时间: 2024-10-14 15:48:00

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

Android更新带进度条的通知栏

在网上查询了下,Android版本号更新通知栏带进度条,醉了,基本都是复制过来.有的代码不全,连源代码下载都没有,有下载也须要积分.还不能用.真黑心啊!! 之前自己也写过自己定义通知栏Notification,想了还是自己写吧. 由于在通知栏更新,须要訪问网络下载,就写了个服务.在服务中实现了下载个更新. 先看MainActivity代码: package com.wsj.wsjdemo; import android.os.Bundle; import android.app.Activity

Android UI组件进阶(1)——带进度条的按钮

Android UI组件进阶(1)--带进度条的按钮 本节引言: 这个系列是继Android UI组件实例大全后的进阶系列,在该系列中我们将进一步的学习 Android UI组件,建议阅读本系列前线学习下UI组件实例大全系列,掌握基本组件的使用; 当然你也可以直接学习本系列!好了,废话不多说,直接开始第一节吧!本节要演示的是: 带进度条的按钮!相信大家在360手机助手到看到这个东东吧: 本节要实现的就是下方这个点击后显示进度的按钮 效果图: 必备基础: 1.进度条的一些属性: backgroun

Android自定义进度条-带文本(文字进度)的水平进度条(ProgressBar)

/** * 带文本提示的进度条 */ public class TextProgressBar extends ProgressBar { private String text; private Paint mPaint; public TextProgressBar(Context context) { super(context); initText(); } public TextProgressBar(Context context, AttributeSet attrs, int d

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

1. 实现了一个带进度条的按钮,完成后显示提示信息,并设置按钮为不可再次被点击 2. 所需要的图片               3.  代码 MainActivity package com.example.buttondemo; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.view.View;

[Android]组件-进度条1

多式样ProgressBar 普通圆形ProgressBar 该类型进度条也就是一个表示运转的过程,例如发送短信,连接网络等等,表示一个过程正在执行中. 一般只要在XML布局中定义就可以了. <progressBar android:id="@+id/widget43" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layou

带进度条的文件上传

Ajax技术——带进度条的文件上传 1.概述 在实际的Web应该开发或网站开发过程中,经常需要实现文件上传的功能.在文件上传过程中,经常需要用户进行长时间的等待,为了让用户及时了解上传进度,可以在上传文件的同时,显示文件的上传进度条.运行本实例,如图1所示,访问文件上传页面,单击“浏览”按钮选择要上传的文件,注意文件不能超过50MB,否则系统将给出错误提示.选择完要上传的文件后,单击“提交”按钮,将会上传文件并显示上传进度. 2.技术要点 主要是应用开源的Common-FileUpload组件来

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

1.自定义ProgressWebView package com.app.android05; import android.content.Context; import android.graphics.Bitmap; import android.util.AttributeSet; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.ProgressBar; /

赵雅智_android多线程下载带进度条

progressBar说明 在某些操作的进度中的可视指示器,为用户呈现操作的进度,还它有一个次要的进度条,用来显示中间进度,如在流媒体播放的缓冲区的进度.一个进度条也可不确定其进度.在不确定模式下,进度条显示循环动画.这种模式常用于应用程序使用任务的长度是未知的. XML重要属性 android:progressBarStyle:默认进度条样式 android:progressBarStyleHorizontal:水平样式 progressBar重要方法 getMax():返回这个进度条的范围的

带进度条的Webview

转帖: http://droidyue.com/blog/2014/07/12/ding-bu-dai-jin-du-tiao-de-webview/ 写这篇文章,做份备忘,简单滴展示一个带进度条的Webview示例,进度条位于Webview上面. 示例图如下 主Activity代码 package com.droidyue.demo.webviewprogressbar; import android.app.Activity; import android.os.Bundle; import