このタイプのプログレスバーを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 に答える