码迷,mamicode.com
首页 > 其他好文 > 详细

12 StatusBar

时间:2014-04-29 13:32:48      阅读:549      评论:0      收藏:0      [点我收藏+]

标签:android   com   http   class   blog   style   img   div   code   java   javascript   

bubuko.com,布布扣
bubuko.com,布布扣
 1 package com.szy.status;
 2 
 3 import android.app.IntentService;
 4 import android.app.Notification;
 5 import android.app.NotificationManager;
 6 import android.app.PendingIntent;
 7 import android.content.Intent;
 8 import android.util.Log;
 9 
10 /**
11  * @author coolszy
12  * @blog http://blog.csdn.net/coolszy
13  */
14 public class StatusService extends IntentService
15 {
16     private static final String TAG = "StatusService";
17 
18     // private static final int KUKA = 0;
19 
20     public StatusService()
21     {
22         super("StatusService");
23     }
24 
25     @Override
26     protected void onHandleIntent(Intent intent)
27     {
28         Log.i(TAG, "开始下载....");
29         showNotification(false);
30         try
31         {
32             Thread.sleep(10000);
33             showNotification(true);
34         } catch (InterruptedException e)
35         {
36             e.printStackTrace();
37         }
38         Log.i(TAG, "程序下载完毕");
39     }
40 
41     private void showNotification(boolean finish)
42     {
43         Notification notification;
44         NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
45         Intent intent = new Intent(this, MainActivity.class);
46         PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
47         if (!finish)
48         {
49             notification = new Notification(R.drawable.head, "开始下载", System.currentTimeMillis());
50             notification.setLatestEventInfo(this, "下载", "正在下载中", contentIntent);
51         }
52         else
53         {
54             notification = new Notification(R.drawable.head, "下载完毕", System.currentTimeMillis());
55             notification.setLatestEventInfo(this, "下载", "程序下载完毕", contentIntent);
56         }
57         notification.defaults=Notification.DEFAULT_ALL;
58         manager.notify(R.layout.main, notification);
59         
60     }
61 
62 }
statusService.java
bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣
 1 package com.szy.status;
 2 
 3 import android.app.Activity;
 4 import android.app.NotificationManager;
 5 import android.content.Intent;
 6 import android.os.Bundle;
 7 import android.view.View;
 8 import android.view.View.OnClickListener;
 9 import android.widget.Button;
10 
11 public class MainActivity extends Activity
12 {
13     private Button btnStartService;
14     @Override
15     public void onCreate(Bundle savedInstanceState)
16     {
17         super.onCreate(savedInstanceState);
18         setContentView(R.layout.main);
19         btnStartService=(Button)findViewById(R.id.btnStartService);
20         btnStartService.setOnClickListener(new OnClickListener()
21         {
22             @Override
23             public void onClick(View v)
24             {
25                 Intent intent=new Intent(MainActivity.this, StatusService.class);
26                 startService(intent);
27             }
28         });
29     }
30     
31     @Override
32     protected void onStart()
33     {
34         super.onStart();
35         NotificationManager manager=(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
36         manager.cancel(R.layout.main);
37     }
38     
39     
40 }
MainActivity.java
bubuko.com,布布扣

 

12 StatusBar,布布扣,bubuko.com

12 StatusBar

标签:android   com   http   class   blog   style   img   div   code   java   javascript   

原文地址:http://www.cnblogs.com/cliffhuang/p/3698438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!