2013-02-28 58 views
1

得到了我的自定義進度這裏:如何使自定義progressBar的背景透明?

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > 

<item android:id="@android:id/background"> 
    <shape> 
     <corners android:radius="25dip" /> 

     <gradient 
      android:angle="90" 
      android:endColor="#222222" 
      android:startColor="#222222" /> 

     <stroke 
      android:width="1dp" 
      android:color="#000" /> 
    </shape> 
</item> 
<item android:id="@android:id/progress"> 
    <clip> 
     <shape> 
      <corners android:radius="25dip" /> 

      <gradient 
       android:angle="90" 
       android:endColor="#b32730" 
       android:startColor="#aa2226" /> 

      <stroke 
       android:width="1dp" 
       android:color="#000" /> 
     </shape> 
    </clip> 
</item> 

我想設置背景有點透明。

我聽說,我可以通過8位色碼這樣做transpernt顏色:

#0是完全透明的,#ff123123是完全不透明的,但沒有什麼變化,我試了很多次。

任何想法?

回答

0

alpha級別最後。您正在編寫#AARRGGBB,而它實際上是#RRGGBBAA,其中AA是alpha級別

+0

嗯,我試試這個。 – 2013-03-01 13:39:30

+0

作品,接受。 – 2013-03-01 13:56:33