:
search.xml
在<ProgressBar
android:id="@+id/searchinfo_progress"
android:progressDrawable="@drawable/progress_horizontal"
android:indeterminateOnly="false"
android:indeterminate="false"
android:layout_width="440dip"
android:layout_height="20dip"
android:layout_marginLeft="120dip"
android:layout_centerVertical="true"
android:max="100"
android:progress="40"
/>
:
progress_horizontal.xml
在片段类<?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>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item
android:id="@android:id/progress" >
<clip>
<shape>
<corners
android:radius="5dip" />
<gradient
android:startColor="#33FF33"
android:endColor="#008000"
android:angle="270" />
</shape>
</clip>
</item>
</layer-list>
中:
ChannelSearchFragment.java
进度条的代码如下:
ChannelSearchFragment extends from SettingsPreferenceFragment
我不知道为什么它在我的过程中无效?系统的进度条可以显示,但我的自定义进度条没有显示...