1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="wrap_content" 5 android:orientation="vertical" 6 android:padding="16dp"> 7 8 <TextView 9 android:layout_width="match_parent" 10 android:layout_height="wrap_content" 11 android:text="@string/configure" 12 android:layout_marginBottom="8dp" /> 13 14 <EditText 15 android:id="@+id/appwidget_text" 16 android:layout_width="match_parent" 17 android:layout_height="wrap_content" 18 android:inputType="text" /> 19 20 <Button 21 android:id="@+id/add_button" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:text="@string/add_widget" 25 android:layout_marginTop="8dp" /> 26 27 </LinearLayout>