Project

General

Profile

Download (1.6 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_set_name.xml @ 2d60ebde

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:gravity="center_horizontal"
6
    android:orientation="vertical">
7

    
8
    <LinearLayout
9
        android:layout_width="fill_parent"
10
        android:layout_height="fill_parent"
11
        android:gravity="center|fill_horizontal"
12
        android:layout_marginLeft="10dp"
13
        android:layout_marginRight="10dp"
14
        android:layout_marginTop="0dp"
15
        android:background="@color/grey"
16
        android:orientation="vertical">
17

    
18
        <TextView
19
            android:id="@+id/set_name_message"
20
            android:layout_width="match_parent"
21
            android:layout_height="match_parent"
22
            android:gravity="center"
23
            android:textSize="24sp"
24
            android:layout_marginTop="10dp"
25
            android:layout_marginLeft="10dp"
26
            android:layout_marginRight="10dp"
27
            android:layout_marginBottom="10dp"/>
28

    
29
        <EditText
30
            android:id="@+id/set_name"
31
            android:singleLine="true"
32
            android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
33
            android:layout_width="match_parent"
34
            android:layout_height="wrap_content"
35
            android:layout_marginLeft="50dp"
36
            android:layout_marginRight="50dp"
37
            android:layout_marginBottom="10dp"
38
            android:textSize="24sp"
39
            android:textColor="@color/black"
40
            android:background="@color/white"/>
41

    
42
    </LinearLayout>
43
</LinearLayout>
(9-9/17)