android 水平进度条 背景设置问题

来源:互联网 发布:妇科炎症发病率数据图 编辑:程序博客网 时间:2024/05/17 01:27
 <ProgressBar          android:id="@+id/storage_progress"          style="@android:style/Widget.ProgressBar.Horizontal"          android:layout_width="fill_parent"          android:layout_height="wrap_content"          android:max="100"          android:progress="20"        android:progressDrawable="@drawable/storage_bar" /> //storage_bar.xml<pre name="code" class="html"><?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>              <solid android:color="#ff70bdea"/>      <corners android:radius="0dip"/>      </shape>    </item>       <item android:id="@android:id/progress">        <clip>            <shape>    <corners android:radius="0dip"/>      <solid android:color="#ffc5ced5"/>      </shape>        </clip>    </item></layer-list>


主要是</clip>条目必须包含,网上好多直接用crash,记录下
                                             
0 0
原创粉丝点击