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

23 lines
765 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/input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="http://192.168.X.X"
android:inputType="textPersonName" />
<Button
android:id="@+id/confirm"
style="@style/Widget.AppCompat.ButtonBar.AlertDialog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@android:string/ok" />
</LinearLayout>