2012-06-21 57 views
0

我想在Android下載應用程序時顯示通知欄。我希望酒吧與從市場下載應用程序時所顯示的相同。請幫忙嗎?Android:在下載應用程序時顯示通知欄

+0

歡迎計算器。下一次你需要展示你的一些作品或者你嘗試過的東西。請閱讀常見問題的「如何提出一個好問題」和http://WhatHaveYouTried.com。請只發布**一個**問題,如果需要,您可以編輯您的問題,而不是發佈兩個副本。 – Eonasdan

+0

比你Eonasdan, – user1471575

回答

3

我覺得這個鏈接可以幫助你:http://united-coders.com/nico-heid/show-progressbar-in-notification-area-like-google-does-when-downloading-from-android

這是download_progress(並更改進度條的風格,用自己的android:progressDrawable

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" android:layout_height="fill_parent" 
android:padding="5dp"> 

<TextView android:id="@+id/status_text" android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:layout_alignParentTop="true" 
    android:text="@string/download_notification_message" /> 

<ProgressBar android:id="@+id/status_progress" 
    android:layout_width="fill_parent" android:layout_height="5dp" 
    android:layout_below="@id/status_text" 
    android:layout_marginTop="10dp" 
    android:progressDrawable="@drawable/notification_progress_bar" 
    style="@android:style/Widget.ProgressBar.Horizontal" 
    android:indeterminate="false" android:indeterminateOnly="false" /> </RelativeLayout> 

notification_progress_bar:

<?xml version="1.0" encoding="utf-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
<item android:id="@android:id/background"> 
    <shape> 
     <gradient 
       android:startColor="#000001" 
       android:centerColor="#0b131e" 
       android:centerY="0.75" 
       android:endColor="#0d1522" 
       android:angle="270" 
     /> 
    </shape> 
</item> 
<item android:id="@android:id/secondaryProgress"> 
    <clip> 
     <shape> 
      <gradient 
        android:startColor="#234" 
        android:centerColor="#234" 
        android:centerY="0.75" 
        android:endColor="#a24" 
        android:angle="270" 
      /> 
     </shape> 
    </clip> 
</item> 

<item 
    android:id="@android:id/progress"> 
    <clip> 
     <shape> 
      <gradient 
        android:startColor="#44000000" 
        android:centerColor="#44000000" 
        android:centerY="0.75" 
        android:endColor="#44000000" 
        android:angle="270" 
      /> 
     </shape> 
    </clip> 
</item> 

-2

試試這個代碼通知欄

void showProgress(String file_path){ 
     dialog = new Dialog(DownloadFileDemo1.this); 
     dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
     dialog.setContentView(R.layout.myprogressdialog); 
     dialog.setTitle("Download Progress"); 

     TextView text = (TextView) dialog.findViewById(R.id.tv1); 
     text.setText("Downloading file from ... " + file_path); 
     cur_val = (TextView) dialog.findViewById(R.id.cur_pg_tv); 
     cur_val.setText("Starting download..."); 
     dialog.show(); 

     pb = (ProgressBar)dialog.findViewById(R.id.progress_bar); 
     pb.setProgress(0); 
     pb.setProgressDrawable(getResources().getDrawable(R.drawable.green_progress)); 
    } 
相關問題