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 -~----------~----~----~----~------~----~------~--~---

