10

SeekBar Android ウィジェットで背景バーの画像を削除する方法はありますか?

後ろにプログレスバーのないスライダーを表示したいだけです。

これを削除

何か助けはありますか?

4

5 に答える 5

39

新しいドローアブルを作成する必要がない、より簡単な方法があります。xml定義で以下を設定するだけです

android:progressDrawable="@android:color/transparent"

または、コードでそれを実行したい場合:

mySlider.setProgressDrawable(new ColorDrawable(android.R.color.transparent));
于 2011-09-28T08:45:51.653 に答える
5

さて私は自分の問題を解決しました。

背景を削除するには、空白のドローアブルを作成し、progressDrawableに設定する必要があります。

satBar.setProgressDrawable(invisibleBackground);

nullに設定しても機能しないようです。

于 2010-03-17T02:04:33.360 に答える
3

試しましたsetBackgroundDrawable(null)か?

于 2010-03-17T01:26:25.760 に答える
2

これを行う 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>

于 2011-09-09T18:34:06.540 に答える
0

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"/>
于 2012-04-17T09:38:27.447 に答える