Project

General

Profile

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

magiccube / src / main / res / layout / config_difficulty.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
    android:gravity="center|fill_horizontal"
6
    android:background="@color/grey"
7 2e99ba6a Leszek Koltunski
    android:paddingLeft="10dp"
8
    android:paddingRight="10dp"
9 74d088c3 Leszek Koltunski
    android:orientation="vertical">
10
11
    <TextView
12
        android:id="@+id/configDifficultyTitle"
13
        android:layout_width="match_parent"
14
        android:layout_height="0dp"
15 2e99ba6a Leszek Koltunski
        android:layout_weight="0.8"
16 74d088c3 Leszek Koltunski
        android:gravity="center"
17
        android:textSize="26sp"
18
        android:paddingLeft="2dp"
19
        android:paddingRight="2dp"
20
        android:maxLines="1"
21
        android:text="@string/config_difficulty"
22
        android:background="@color/light_grey"/>
23
24 2e99ba6a Leszek Koltunski
    <LinearLayout
25
        android:id="@+id/configDifficultyLayout"
26
        android:layout_width="fill_parent"
27
        android:layout_height="0dp"
28
        android:layout_weight="2.0"
29
        android:paddingLeft="5dp"
30
        android:paddingRight="5dp"
31
        android:paddingTop="10dp"
32
        android:paddingBottom="10dp"
33
        android:background="@color/light_grey"
34
        android:orientation="horizontal">
35
36
        <ImageView
37
             android:id="@+id/configDifficulty0"
38
             android:layout_width="0dp"
39
             android:layout_height="match_parent"
40
             android:layout_weight="1"
41 183d4a34 Leszek Koltunski
             android:src="@drawable/diff_uncheck0"/>
42 2e99ba6a Leszek Koltunski
43
        <ImageView
44
             android:id="@+id/configDifficulty1"
45
             android:layout_width="0dp"
46
             android:layout_height="match_parent"
47
             android:layout_weight="1"
48
             android:gravity="center"
49 183d4a34 Leszek Koltunski
             android:src="@drawable/diff_uncheck1"/>
50 2e99ba6a Leszek Koltunski
51
        <ImageView
52
             android:id="@+id/configDifficulty2"
53
             android:layout_width="0dp"
54
             android:layout_height="match_parent"
55
             android:layout_weight="1"
56
             android:gravity="center"
57 183d4a34 Leszek Koltunski
             android:src="@drawable/diff_uncheck2"/>
58 2e99ba6a Leszek Koltunski
59
        <ImageView
60
             android:id="@+id/configDifficulty3"
61
             android:layout_width="0dp"
62
             android:layout_height="match_parent"
63
             android:layout_weight="1"
64
             android:gravity="center"
65 183d4a34 Leszek Koltunski
             android:src="@drawable/diff_uncheck3"/>
66 2e99ba6a Leszek Koltunski
67
        <ImageView
68
             android:id="@+id/configDifficulty4"
69
             android:layout_width="0dp"
70
             android:layout_height="match_parent"
71
             android:layout_weight="1"
72
             android:gravity="center"
73 183d4a34 Leszek Koltunski
             android:src="@drawable/diff_uncheck4"/>
74 2e99ba6a Leszek Koltunski
75
    </LinearLayout>
76
77 74d088c3 Leszek Koltunski
</LinearLayout>