我想在 android 中使用这种类型的进度条。我尝试过许多水平进度条。它们都看起来像具有不同颜色的默认进度条。不知道如何使用这种类型:
问问题
40189 次
2 回答
11
您将需要创建自己的自定义进度条。这并不像使用许多单杠那么简单。
于 2012-07-04T05:12:46.433 回答
5
自定义进度条需要定义进度条的背景和进度的属性或属性。
在 res-> drawable 文件夹中创建一个名为 customprogressbar.xml 的 .xml 文件
customprogressbar.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>
现在您需要设置将 progressDrawable 属性设置为 customprogressbar.xml(drawable)
您可以在 xml 文件或 Activity 中执行此操作(在运行时)
在您的 xml 中,请执行以下操作
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleHorizontal"
android:progressDrawable="@drawable/custom_progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
在运行时执行以下操作
// Get the Drawable custom_progressbar
Drawable draw= res.getDrawable(R.drawable.custom_progressbar);
// set the drawable as progress drawavle
progressBar.setProgressDrawable(draw);
于 2013-06-03T12:17:08.513 回答