diff options
author | KalimochoAz <calimochoazucarado@gmail.com> | 2012-04-24 23:02:55 +0200 |
---|---|---|
committer | KalimochoAz <calimochoazucarado@gmail.com> | 2012-04-24 23:02:55 +0200 |
commit | bf0c746611b994698a4770fe233ea05ffd2ecd01 (patch) | |
tree | 93191940530cdcbbcb9d6b3b815119cfcecb2a9a /CrespoParts/res | |
parent | fa735c78bae900226808a703bcd5b1fca1153032 (diff) | |
download | device_samsung_crespo-bf0c746611b994698a4770fe233ea05ffd2ecd01.zip device_samsung_crespo-bf0c746611b994698a4770fe233ea05ffd2ecd01.tar.gz device_samsung_crespo-bf0c746611b994698a4770fe233ea05ffd2ecd01.tar.bz2 |
Added presets for color multipliers
Change-Id: I90e4021569b73394156dd1725222e0774c17e472
Diffstat (limited to 'CrespoParts/res')
-rw-r--r-- | CrespoParts/res/layout/preference_dialog_color_tuning.xml | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/CrespoParts/res/layout/preference_dialog_color_tuning.xml b/CrespoParts/res/layout/preference_dialog_color_tuning.xml index 6154982..068f88c 100644 --- a/CrespoParts/res/layout/preference_dialog_color_tuning.xml +++ b/CrespoParts/res/layout/preference_dialog_color_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_color" + android:src="@drawable/color_tuning_preview" android:layout_width="match_parent" android:layout_height="40dip" android:layout_below="@id/color_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_color" > + + <Button + android:id="@+id/btnColorDefault" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color_default_title" /> + + <Button + android:id="@+id/btnColorCM" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color_CM_title" /> + + <Button + android:id="@+id/btnColorDark" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color_dark_title" /> + + </LinearLayout> + </RelativeLayout> -</ScrollView>
\ No newline at end of file +</ScrollView> |