この質問を解決するには3つの方法があります。
- プログレスバーの色を宣言的に調整する方法
- プログレスバーの色をプログラムで調整する方法ですが、コンパイル前に宣言されたさまざまな所定の色から色を選択する方法
- プログラムでプログレスバーの色を調整し、プログラムで色を作成する方法。
特に、amfcostaの回答へのコメントに見られるように、#2と#3については多くの混乱があります。その答えは、プログレスバーを基本色以外に設定したいときはいつでも予測できない色の結果をもたらします。これは、背景色を変更するだけであり、実際のプログレスバーの「クリップ」領域は、不透明度が低下した黄色のオーバーレイのままです。たとえば、その方法を使用して背景を濃い紫に設定すると、アルファの減少による濃い紫と黄色の混合から生じる、クレイジーなピンクがかった色のプログレスバーの「クリップ」色になります。
とにかく、#1はRyanによって完全に答えられ、Štarkeは#3のほとんどに答えますが、#2と#3の完全なソリューションを探している人のために:
プログレスバーの色をプログラムで調整する方法ですが、XMLで宣言されている事前定義された色から色を選択する
res / drawable / my_progressbar.xml:
このファイルを作成しますが、my_progressとmy_secondsProgressの色を変更します。
(注:これは、デフォルトのAndroid SDK ProgressBarを定義する実際のXMLファイルのコピーですが、IDと色を変更しました。元の名前はprogress_horizontalです)
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/my_progress_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="@+id/my_secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ff171d"
android:centerColor="#80ff1315"
android:centerY="0.75"
android:endColor="#a0ff0208"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@+id/my_progress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#7d2afdff"
android:centerColor="#ff2afdff"
android:centerY="0.75"
android:endColor="#ff22b9ba"
android:angle="270"
/>
</shape>
</clip>
</item>
あなたのJavaで:
final Drawable drawable;
int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < 16) {
drawable = ctx.getResources().getDrawable(R.drawable.my_progressbar);
} else {
drawable = ContextCompat.getDrawable(ctx, R.drawable.my_progressbar);
}
progressBar.setProgressDrawable(drawable)
プログラムでプログレスバーの色を調整し、プログラムで色を作成する方法
編集:私はこれを適切に解決する時間を見つけました。私の以前の答えは、これを少し曖昧にしました。
ProgressBarは、LayerDrawableの3つのDrawableとして構成されています。
- レイヤー1は背景です
- レイヤー2は2番目の進行色です
- レイヤー3はメインの進行状況バーの色です
以下の例では、メインプログレスバーの色をシアンに変更します。
//Create new ClipDrawable to replace the old one
float pxCornerRadius = viewUtils.convertDpToPixel(5);
final float[] roundedCorners = new float[] { pxCornerRadius, pxCornerRadius, pxCornerRadius, pxCornerRadius, pxCornerRadius, pxCornerRadius, pxCornerRadius, pxCornerRadius };
ShapeDrawable shpDrawable = new ShapeDrawable(new RoundRectShape(roundedCorners, null, null));
shpDrawable.getPaint().setColor(Color.CYAN);
final ClipDrawable newProgressClip = new ClipDrawable(shpDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);
//Replace the existing ClipDrawable with this new one
final LayerDrawable layers = (LayerDrawable) progressBar.getProgressDrawable();
layers.setDrawableByLayerId(R.id.my_progress, newProgressClip);
その例では、単色に設定しています。あなたはそれをグラデーションカラーに設定することができます
shpDrawable.getPaint().setColor(Color.CYAN);
と
Shader shader = new LinearGradient(0, 0, 0, progressBar.getHeight(), Color.WHITE, Color.BLACK, Shader.TileMode.CLAMP);
shpDrawable.getPaint().setShader(shader);
乾杯。
-ランス