Project

General

Profile

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

magiccube / src / main / res / layout / config_mesh.xml @ 2e99ba6a

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="fill_parent"
4
    android:layout_height="0dp"
5
    android:paddingLeft="10dp"
6
    android:paddingRight="10dp"
7
    android:paddingBottom="10dp"
8
    android:gravity="center|fill_horizontal"
9
    android:background="@color/grey"
10
    android:orientation="vertical">
11

    
12
    <TextView
13
        android:id="@+id/configMeshTitle"
14
        android:layout_width="match_parent"
15
        android:layout_height="0dp"
16
        android:layout_weight="0.8"
17
        android:gravity="center"
18
        android:textSize="26sp"
19
        android:paddingLeft="2dp"
20
        android:paddingRight="2dp"
21
        android:maxLines="1"
22
        android:text="@string/config_mesh"
23
        android:background="@color/light_grey"/>
24

    
25
    <RadioGroup
26
        android:id="@+id/meshRadioGroup"
27
        android:layout_width="match_parent"
28
        android:layout_height="0dp"
29
        android:layout_weight="2"
30
        android:checkedButton="@+id/meshNice"
31
        android:background="@color/light_grey">
32

    
33
        <RadioButton
34
            android:id="@+id/meshSimple"
35
            android:layout_width="match_parent"
36
            android:layout_height="wrap_content"
37
            android:layout_marginBottom="0dp"
38
            android:text="@string/config_mesh_simple"/>
39

    
40
        <RadioButton
41
            android:id="@+id/meshNice"
42
            android:layout_width="match_parent"
43
            android:layout_height="wrap_content"
44
            android:layout_marginBottom="0dp"
45
            android:text="@string/config_mesh_nice"/>
46

    
47
    </RadioGroup>
48

    
49
</LinearLayout>
(5-5/32)