261 lines
10 KiB
XML
Executable File
261 lines
10 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3"
|
|
android:background="@color/sv_bg"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner"
|
|
style="@android:style/Widget.Spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:spinnerMode="dropdown" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_change_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/change_image"
|
|
android:textSize="15sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_brightness"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/brightness"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_brightness_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/del"
|
|
android:textSize="15sp" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/sb_brightness"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="2"
|
|
android:max="100"
|
|
android:progress="50" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_brightness_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/add"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_contrast"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/contrast"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_contrast_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/del"
|
|
android:textSize="15sp" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/sb_contrast"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="2"
|
|
android:max="100"
|
|
android:progress="50" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_contrast_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/add"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_saturation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/saturation"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_saturation_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/del"
|
|
android:textSize="15sp" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/sb_saturation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="2"
|
|
android:max="100"
|
|
android:progress="50" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_saturation_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/add"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_hue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/hue"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_hue_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/del"
|
|
android:textSize="15sp" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/sb_hue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="2"
|
|
android:max="100"
|
|
android:progress="50" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_hue_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/add"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_color_temperature"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/color_temperature"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_color_temperature_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/del"
|
|
android:textSize="15sp" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/sb_color_temperature"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="2"
|
|
android:max="100"
|
|
android:progress="50" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_color_temperature_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:text="@string/add"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btn_set_3d_lut"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/set_3d_lut"
|
|
android:textSize="15sp" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_reset"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/reset"
|
|
android:textSize="15sp" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_dump_baseparameter"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dump_baseparameter"
|
|
android:textSize="15sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/test" />
|
|
</LinearLayout> |