SeekBar Android ウィジェットで背景バーの画像を削除する方法はありますか?
後ろにプログレスバーのないスライダーを表示したいだけです。
何か助けはありますか?
新しいドローアブルを作成する必要がない、より簡単な方法があります。xml定義で以下を設定するだけです
android:progressDrawable="@android:color/transparent"
または、コードでそれを実行したい場合:
mySlider.setProgressDrawable(new ColorDrawable(android.R.color.transparent));
さて私は自分の問題を解決しました。
背景を削除するには、空白のドローアブルを作成し、progressDrawableに設定する必要があります。
satBar.setProgressDrawable(invisibleBackground);
nullに設定しても機能しないようです。
試しましたsetBackgroundDrawable(null)
か?
これを行う 1 つの方法は、進行状況バーの色を背景色に変更することです。カスタム レイアウトを使用する必要があります。
<SeekBar
android:layout_width="350px"
android:layout_height="25px"
android:layout_margin="30px"
android:layout_x="60px"
android:layout_y="185px"
android:id="@+id/seekbar"
android:progressDrawable="@drawable/myprogress"
/>
カスタム レイアウトを以下に示します。色をいじってみましょう。
<?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/progress"
>
<clip>
<shape>
<corners
android:radius="5dip" />
<gradient
android:startColor="#9191FE"
android:centerColor="#9191FE"
android:centerY="0.75"
android:endColor="#9191FE"
android:angle="270" />
</shape>
</clip>
</item>
xml ファイルseekbar_progress.xml
を作成し、フォルダーに配置します。drawable
ここで、ストライプは画像であり、画像を取得してdrawable
フォルダーに配置します。
seekbar_progress.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<clip>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/stripes"
android:tileMode="repeat"
android:antialias="true"
android:dither="true"
android:filter="false"
android:gravity="left"
/>
</clip>
</item>
</layer-list>
main xml
シークバー コードを含むファイルで、画像を取得し、フォルダーに保存します。ここでdrawable
のシークバーは画像です。
<SeekBar
android:id="@+id/seekbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/seekbar"
android:progressDrawable="@drawable/seekbar_progress"/>