Project

General

Profile

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

magiccube / src / main / res / layout / settings_popup.xml @ 0a9adc31

1 c820515c leszek
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
   android:id="@+id/settingsGrid"
4
   android:layout_width="wrap_content"
5
   android:layout_height="wrap_content"
6
   android:gravity="center"
7
   android:orientation="vertical">
8
9
   <TextView
10 9881dc03 leszek
        android:id="@+id/settingsTitle"
11 c820515c leszek
        android:layout_width="match_parent"
12
        android:layout_height="wrap_content"
13
        android:text="@string/settings_title"
14 2eb70e4a leszek
        android:textSize="34sp"
15 c820515c leszek
        android:gravity="center"/>
16
17 9881dc03 leszek
   <GridLayout
18
        android:layout_width="match_parent"
19
        android:layout_height="wrap_content"
20
        android:rowCount="2"
21
        android:columnCount="2">
22 c820515c leszek
23 9881dc03 leszek
        <TextView
24 c820515c leszek
            android:id="@+id/sortText"
25 236cc1c1 leszek
            android:layout_marginStart="10dp"
26
            android:layout_marginEnd="15dp"
27
            android:layout_marginTop="10dp"
28
            android:layout_marginBottom="10dp"
29 c820515c leszek
            android:layout_width="wrap_content"
30
            android:layout_height="match_parent"
31
            android:text="@string/sort_by"
32 2eb70e4a leszek
            android:textSize="24sp"
33 c820515c leszek
            android:gravity="start|center_vertical"/>
34
35 9881dc03 leszek
        <Spinner
36 c820515c leszek
            android:id="@+id/sortMethod"
37
            android:layout_width="wrap_content"
38
            android:layout_height="match_parent"
39 236cc1c1 leszek
            android:layout_marginStart="15dp"
40
            android:layout_marginEnd="10dp"
41
            android:layout_marginTop="10dp"
42
            android:layout_marginBottom="10dp"
43
            android:gravity="start|center_vertical"/>
44 9881dc03 leszek
45
        <TextView
46
            android:id="@+id/themeText"
47 236cc1c1 leszek
            android:layout_marginStart="10dp"
48
            android:layout_marginEnd="15dp"
49
            android:layout_marginTop="10dp"
50
            android:layout_marginBottom="10dp"
51 9881dc03 leszek
            android:layout_width="wrap_content"
52
            android:layout_height="match_parent"
53
            android:text="@string/theme"
54 2eb70e4a leszek
            android:textSize="24sp"
55 9881dc03 leszek
            android:gravity="start|center_vertical"/>
56
57
        <Spinner
58
            android:id="@+id/themeValue"
59
            android:layout_width="wrap_content"
60
            android:layout_height="match_parent"
61 236cc1c1 leszek
            android:layout_marginStart="15dp"
62
            android:layout_marginEnd="10dp"
63
            android:layout_marginTop="10dp"
64
            android:layout_marginBottom="10dp"
65
            android:gravity="start|center_vertical"/>
66 c820515c leszek
67 9881dc03 leszek
   </GridLayout>
68 c820515c leszek
</LinearLayout>