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="match_parent"
5              android:orientation="vertical">
6
7    <EditText
8        android:id="@+id/key"
9        android:layout_width="match_parent"
10        android:layout_height="wrap_content"
11        android:layout_marginEnd="16dp"
12        android:layout_marginStart="16dp"
13        android:layout_marginTop="16dp"
14        android:hint="@string/key"/>
15
16    <EditText
17        android:id="@+id/value"
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:layout_marginEnd="16dp"
21        android:layout_marginStart="16dp"
22        android:hint="@string/value"/>
23
24    <Button
25        android:id="@+id/ok"
26        style="?android:attr/buttonBarButtonStyle"
27        android:layout_width="match_parent"
28        android:layout_height="wrap_content"
29        android:text="@android:string/ok"/>
30
31</LinearLayout>
32