diff options
Diffstat (limited to 'CrespoParts/res')
-rw-r--r-- | CrespoParts/res/layout/preference_dialog_gamma_tuning.xml | 31 | ||||
-rw-r--r-- | CrespoParts/res/values/strings.xml | 3 |
2 files changed, 32 insertions, 2 deletions
diff --git a/CrespoParts/res/layout/preference_dialog_gamma_tuning.xml b/CrespoParts/res/layout/preference_dialog_gamma_tuning.xml index 3ece54b..110dc32 100644 --- a/CrespoParts/res/layout/preference_dialog_gamma_tuning.xml +++ b/CrespoParts/res/layout/preference_dialog_gamma_tuning.xml @@ -80,7 +80,8 @@ android:paddingLeft="20dip" android:paddingRight="20dip" /> - <ImageView android:src="@drawable/color_tuning_preview" + <ImageView android:id="@+id/black_scale_picture" + android:src="@drawable/color_tuning_preview" android:layout_width="match_parent" android:layout_height="40dip" android:layout_below="@id/gamma_blue_seekbar" @@ -88,5 +89,31 @@ android:paddingLeft="20dip" android:paddingRight="20dip" /> + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@+id/black_scale_picture" > + + <Button + android:id="@+id/btnGammaDefault" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma_default_title" /> + + <Button + android:id="@+id/btnGammaCM" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma_CM_title" /> + + <Button + android:id="@+id/btnGammaBright" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma_bright_title" /> + + </LinearLayout> + </RelativeLayout> -</ScrollView>
\ No newline at end of file +</ScrollView> diff --git a/CrespoParts/res/values/strings.xml b/CrespoParts/res/values/strings.xml index 8ef5161..41abe8d 100644 --- a/CrespoParts/res/values/strings.xml +++ b/CrespoParts/res/values/strings.xml @@ -18,6 +18,9 @@ <string name="color_red_title">Red</string> <string name="color_green_title">Green</string> <string name="color_blue_title">Blue</string> + <string name="gamma_default_title">Default</string> + <string name="gamma_CM_title">CM Sett.</string> + <string name="gamma_bright_title">Bright Sett.</string> <string name="category_touchkey_title">Touch Keys</string> <string name="touchkey_notification_title_head">Backlight Notifications</string> |