mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
fix seekbar style so thumb's fully visible on 2.1 (was ok on 1.6); and
rename style for clarity.
This commit is contained in:
parent
660d86c121
commit
529f3df726
2 changed files with 6 additions and 5 deletions
|
@ -31,7 +31,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
>
|
>
|
||||||
<SeekBar android:id="@+id/seek_red"
|
<SeekBar android:id="@+id/seek_red"
|
||||||
style="@style/color_seek_text"
|
style="@style/color_seek_bar"
|
||||||
/>
|
/>
|
||||||
<EditText android:id="@+id/edit_red"
|
<EditText android:id="@+id/edit_red"
|
||||||
style="@style/color_edit_text"
|
style="@style/color_edit_text"
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
>
|
>
|
||||||
<SeekBar android:id="@+id/seek_green"
|
<SeekBar android:id="@+id/seek_green"
|
||||||
style="@style/color_seek_text"
|
style="@style/color_seek_bar"
|
||||||
/>
|
/>
|
||||||
<EditText android:id="@+id/edit_green"
|
<EditText android:id="@+id/edit_green"
|
||||||
style="@style/color_edit_text"
|
style="@style/color_edit_text"
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
>
|
>
|
||||||
<SeekBar android:id="@+id/seek_blue"
|
<SeekBar android:id="@+id/seek_blue"
|
||||||
style="@style/color_seek_text"
|
style="@style/color_seek_bar"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<EditText android:id="@+id/edit_blue"
|
<EditText android:id="@+id/edit_blue"
|
||||||
|
|
|
@ -17,13 +17,14 @@
|
||||||
<item name="android:textColor">#FFFFFFFF</item>
|
<item name="android:textColor">#FFFFFFFF</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="color_seek_text">
|
<style name="color_seek_bar">
|
||||||
<item name="android:layout_width">wrap_content</item>
|
<item name="android:layout_width">wrap_content</item>
|
||||||
<item name="android:layout_height">wrap_content</item>
|
<item name="android:layout_height">wrap_content</item>
|
||||||
<item name="android:layout_gravity">left|center_vertical</item>
|
<item name="android:layout_gravity">left|center_vertical</item>
|
||||||
<item name="android:max">255</item>
|
<item name="android:max">255</item>
|
||||||
<item name="android:layout_weight">1</item>
|
<item name="android:layout_weight">1</item>
|
||||||
<item name="android:paddingRight">4dp</item>
|
<item name="android:paddingRight">8dp</item>
|
||||||
|
<item name="android:paddingLeft">8dp</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="color_edit_text">
|
<style name="color_edit_text">
|
||||||
|
|
Loading…
Reference in a new issue