Project

General

Profile

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

magiccube / src / main / res / layout / settings_popup_android25.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 236cc1c1 leszek
        android:textSize="34sp"
15 c820515c leszek
        android:gravity="center"/>
16
17 236cc1c1 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 236cc1c1 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 236cc1c1 leszek
            android:textSize="24sp"
33 c820515c leszek
            android:gravity="start|center_vertical"/>
34
35
        <Spinner
36
            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 c820515c leszek
            android:spinnerMode="dialog"
44 236cc1c1 leszek
            android:gravity="start|center_vertical"/>
45 9881dc03 leszek
46 236cc1c1 leszek
        <TextView
47 9881dc03 leszek
            android:id="@+id/themeText"
48 236cc1c1 leszek
            android:layout_marginStart="10dp"
49
            android:layout_marginEnd="15dp"
50
            android:layout_marginTop="10dp"
51
            android:layout_marginBottom="10dp"
52 9881dc03 leszek
            android:layout_width="wrap_content"
53
            android:layout_height="match_parent"
54
            android:text="@string/theme"
55 236cc1c1 leszek
            android:textSize="24sp"
56 9881dc03 leszek
            android:gravity="start|center_vertical"/>
57
58 236cc1c1 leszek
        <Spinner
59 9881dc03 leszek
            android:id="@+id/themeValue"
60
            android:layout_width="wrap_content"
61
            android:layout_height="match_parent"
62 236cc1c1 leszek
            android:layout_marginStart="15dp"
63
            android:layout_marginEnd="10dp"
64
            android:layout_marginTop="10dp"
65
            android:layout_marginBottom="10dp"
66
            android:spinnerMode="dialog"
67
            android:gravity="start|center_vertical"/>
68 9881dc03 leszek
69 236cc1c1 leszek
   </GridLayout>
70 c820515c leszek
</LinearLayout>