Automation/app/src/main/res/layout/activity_manage_action_brig...

41 lines
1.4 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">
2021-07-04 02:14:26 +02:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_span="2"
android:textSize="25dp"
android:textStyle="bold"
android:layout_marginBottom="@dimen/default_margin"
android:text="@string/setScreenBrightness" />
2021-02-16 13:42:49 +01:00
<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>