hi ,
I have modify the seekbar size of height, you can read of it that
source code res/style.xml,
where located in ANDROID_HOME/tools/lib/res/default/values/style.xml
What I means,you need to modify the seekbar style and override old style.
default style:
<style name="Widget.SeekBar">
<item name="android:indeterminateOnly">false</item>
<item
name="android:progressDrawable">@android:drawable/progress_horizontal</item>
<item
name="android:indeterminateDrawable">@android:drawable/progress_horizontal</item>
<item name="android:minHeight">20dip</item>
<item name="android:maxHeight">20dip</item>
<item name="android:thumb">@android:drawable/seek_thumb</item>
<item name="android:thumbOffset">8px</item>
</style>
You try it. Thanks.
On Sat, Mar 28, 2009 at 5:05 PM, [email protected] <
[email protected]> wrote:
>
> I would like do decrease the height of my seekbar. I tried for hours
> but I just do not get it. I use a custom drawable so I guess that
> this is the place to specify the size:
>
>
> <shape xmlns:android="http://schemas.android.com/apk/res/android"
> type="rectangle">
> <gradient android:startColor="@color/player_seek_bar_2"
> android:centerColor="@color/player_seek_bar_1"
> android:endColor="@color/player_seek_bar_2"
> android:angle="270"/>
> <size android:width="50dp" android:height="50dp"/>
> <stroke android:width="2dp" android:color="#FFFFFFFF"/>
> <corners android:radius="3dp" />
> </shape>
>
>
> However, modifying the size attributes has no effect. Adjusting the
> size attributes in the layout file changes the size only by clipping
> the seekbar. This is may layout:
>
>
> <SeekBar android:id="@+id/progressSeekBar"
> android:layout_width="wrap_content"
> android:layout_height="wrap_content"
> android:layout_margin="5sp"
> android:max="100"
> android:progress="0"
> android:layout_weight="20"
>
> android:progressDrawable="@drawable/player_progress_seek_bar"/>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---