112 lines
2.8 KiB
XML
112 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="10dp" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<TableLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<TableRow>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/application" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/bSelectApp"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/selectApplication" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvSelectedActivity"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/anyApp"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
<TableRow>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="@string/title" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/spinnerTitleDirection"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/etNotificationTitle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ems="10" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
<TableRow>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="@string/text" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<Spinner
|
||
|
android:id="@+id/spinnerTextDirection"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/etNotificationText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ems="10" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</TableRow>>
|
||
|
|
||
|
</TableLayout>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/bSaveTriggerNotification"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/save" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|