summaryrefslogtreecommitdiffstats
path: root/res/layout/go_dialog.xml
blob: 1ee6319cc29ca2c21a0e9e58e9562e187444b403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:padding="10dp"
    android:orientation="vertical">
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:text="U+" />
    <EditText android:id="@+id/goForm"
        android:layout_width="80sp"
        android:layout_height="wrap_content" />
    <Button android:id="@+id/goButton"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="@string/go_button" />
  </LinearLayout>
  <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="@string/go_hint" />
</LinearLayout>