You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.0 KiB
100 lines
3.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/default_margin"
|
|
android:orientation="vertical">
|
|
|
|
<TableLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:shrinkColumns="1"
|
|
android:stretchColumns="1" >
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:text="@string/profile"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Spinner
|
|
android:id="@+id/spinnerProfiles"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<View
|
|
android:layout_span="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@android:color/darker_gray" />
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:text="@string/needsToBeActive"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/chkProfileActive"
|
|
android:checked="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<View
|
|
android:layout_span="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@android:color/darker_gray" />
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:text="@string/checkSettings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/chkProfileCheckSettings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_span="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/profileTriggerCheckSettings" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
<Button
|
|
android:id="@+id/bSaveTriggerProfile"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/default_margin"
|
|
android:text="@string/save" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |