135 lines
5.3 KiB
XML
135 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/app_bar_drawer"
|
|
layout="@layout/app_bar_drawer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp">
|
|
|
|
<EditText
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/push_title_hint"
|
|
android:inputType="text"
|
|
android:singleLine="true" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/push_content_hint"
|
|
android:inputType="textCapSentences|textMultiLine"
|
|
android:maxLength="2000"
|
|
android:maxLines="10" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/edtTxtPriority"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:digits="0123456789"
|
|
android:hint="@string/push_priority_hint"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="numberSigned"
|
|
android:maxLength="3"
|
|
android:text="0" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<TextView
|
|
android:id="@+id/txtAppListDesc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/appListDescription" />
|
|
|
|
<Spinner
|
|
android:id="@+id/appSpinner"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="50dp"
|
|
android:spinnerMode="dropdown"
|
|
android:textSize="18sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/missingAppsContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="10dp"
|
|
android:paddingEnd="10dp"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:id="@+id/missingAppsIcon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0"
|
|
app:srcCompat="@drawable/ic_info" />
|
|
|
|
<Space
|
|
android:layout_width="10dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0" />
|
|
|
|
<TextView
|
|
android:id="@+id/missingAppsText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0"
|
|
android:text="@string/push_missing_app_info"
|
|
android:textAlignment="center"
|
|
android:visibility="visible" />
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/push_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="@string/push_button" />
|
|
|
|
</LinearLayout>
|
|
</ScrollView> |