我在res-> drawable文件夹中创建了一个名为customprogressbar.xml的XML文件:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Define the background properties like color etc -->
<item android:id="@android:id/background">
<shape>
<gradient
android:startColor="#000001"
android:centerColor="#0b131e"
android:centerY="1.0"
android:endColor="#0d1522"
android:angle="270"
/>
</shape>
</item>
<!-- Define the progress properties like start color, end color etc -->
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:startColor="#007A00"
android:centerColor="#007A00"
android:centerY="1.0"
android:endColor="#06101d"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
和
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleHorizontal"
android:progressDrawable="@drawable/custom_progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
现在我有颜色,但我需要在填充和剩余之间放置指示图像。
有什么想法吗?
答案 0 :(得分:6)
您所看到的是Seekbar而不是简单的Progressbar。圆形指示器称为拇指,您可以添加任何您喜欢的图像(以及自定义进度条)。
<SeekBar ...
android:thumb="@drawable/your_thumb"
android:progressDrawable="@drawable/progress_bar_layers"
/>
答案 1 :(得分:1)
如果&#34;指标图像&#34;意味着那里有圆圈,那么我不确定是否可以使用ProgressBar来完成。
这看起来更像是SeekBar然后是ProgressBar。它们实际上是相同的,除了SeekBar有&#34;拇指&#34;属性。这可能适合你:
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@drawable/thumb_image"
android:progressDrawable="@drawable/customprogressbar.xml"
/>