nowol/app/src/main/res/layout/popup.xml

30 lines
970 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="300dp"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/popUpHostText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:orientation="horizontal"
>
<Button
android:id="@+id/popupHostBtn"
style="@style/Widget.AppCompat.ButtonBar.AlertDialog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/pupUpHostBtn" />
</LinearLayout>
</LinearLayout>