Project

General

Profile

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

magiccube / src / main / res / layout / config_mesh.xml @ 183d4a34

1 74d088c3 Leszek Koltunski
<?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 2e99ba6a Leszek Koltunski
    android:paddingLeft="10dp"
6
    android:paddingRight="10dp"
7
    android:paddingBottom="10dp"
8 74d088c3 Leszek Koltunski
    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 2e99ba6a Leszek Koltunski
        android:layout_weight="0.8"
17 74d088c3 Leszek Koltunski
        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 2e99ba6a Leszek Koltunski
    <RadioGroup
26
        android:id="@+id/meshRadioGroup"
27
        android:layout_width="match_parent"
28 74d088c3 Leszek Koltunski
        android:layout_height="0dp"
29 183d4a34 Leszek Koltunski
        android:layout_weight="3.0"
30
        android:paddingStart="5dp"
31 2e99ba6a Leszek Koltunski
        android:checkedButton="@+id/meshNice"
32
        android:background="@color/light_grey">
33
34
        <RadioButton
35
            android:id="@+id/meshSimple"
36
            android:layout_width="match_parent"
37
            android:layout_height="wrap_content"
38
            android:layout_marginBottom="0dp"
39
            android:text="@string/config_mesh_simple"/>
40
41
        <RadioButton
42
            android:id="@+id/meshNice"
43
            android:layout_width="match_parent"
44
            android:layout_height="wrap_content"
45
            android:layout_marginBottom="0dp"
46
            android:text="@string/config_mesh_nice"/>
47
48
    </RadioGroup>
49 74d088c3 Leszek Koltunski
50
</LinearLayout>