Automation/app/src/main/res/layout/activity_manage_brightness_setting.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2021-02-16 13:42:49 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/default_margin">
<CheckBox
android:id="@+id/chkAutoBrightness"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/autoBrightness" />
<TextView
android:id="@+id/tvAutoBrightnessNotice"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<SeekBar
android:id="@+id/sbBrightness"
android:layout_marginTop="@dimen/default_margin"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:layout_marginTop="@dimen/default_margin"
android:id="@+id/bApplyBrightness"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/apply" />
</LinearLayout>