Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ b710a574

1 1cbcc6bf Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 354b7db8 Leszek Koltunski
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 1cbcc6bf Leszek Koltunski
    android:layout_width="match_parent"
4 bf1edbac Leszek Koltunski
    android:layout_height="wrap_content"
5 354b7db8 Leszek Koltunski
    android:background="@color/grey"
6
    android:orientation="vertical">
7 1cbcc6bf Leszek Koltunski
8
    <LinearLayout
9 e71baee1 Leszek Koltunski
        android:id="@+id/about_share_layout"
10 1cbcc6bf Leszek Koltunski
        android:layout_width="fill_parent"
11 391d680e leszek
        android:layout_height="wrap_content"
12 1cbcc6bf Leszek Koltunski
        android:gravity="center|fill_horizontal"
13 5560eea9 Leszek Koltunski
        android:layout_marginLeft="10dp"
14
        android:layout_marginRight="10dp"
15 354b7db8 Leszek Koltunski
        android:background="@color/dark_grey"
16
        android:orientation="horizontal">
17
18
        <ImageView
19 e71baee1 Leszek Koltunski
            android:layout_gravity="top"
20 391d680e leszek
            android:adjustViewBounds="true"
21 354b7db8 Leszek Koltunski
            android:layout_height="wrap_content"
22 e71baee1 Leszek Koltunski
            android:layout_marginStart="5dp"
23 391d680e leszek
            android:layout_marginTop="5dp"
24
            android:layout_marginBottom="5dp"
25 e71baee1 Leszek Koltunski
            android:layout_width="0dp"
26 bf1edbac Leszek Koltunski
            android:layout_weight="0.2"
27 e71baee1 Leszek Koltunski
            android:src="@drawable/ui_share"/>
28 1cbcc6bf Leszek Koltunski
29 e71baee1 Leszek Koltunski
        <LinearLayout
30
            android:layout_width="0dp"
31
            android:layout_height="match_parent"
32
            android:layout_weight="1"
33
            android:gravity="center|fill_horizontal"
34
            android:background="@color/dark_grey"
35
            android:orientation="vertical">
36
37
            <TextView
38
                android:id="@+id/about_share_string"
39
                android:layout_width="match_parent"
40
                android:layout_height="wrap_content"
41
                android:gravity="start"
42
                android:textSize="20sp"
43
                android:text="@string/share"
44
                android:layout_marginTop="5dp"
45
                android:layout_marginLeft="10dp"
46
                android:layout_marginRight="10dp"
47
                android:layout_marginBottom="5dp"/>
48
        </LinearLayout>
49 354b7db8 Leszek Koltunski
   </LinearLayout>
50 0fd3ac1f Leszek Koltunski
51 354b7db8 Leszek Koltunski
   <LinearLayout
52 e71baee1 Leszek Koltunski
        android:id="@+id/about_email_layout"
53 354b7db8 Leszek Koltunski
        android:layout_width="fill_parent"
54 391d680e leszek
        android:layout_height="wrap_content"
55 354b7db8 Leszek Koltunski
        android:gravity="center|fill_horizontal"
56
        android:layout_marginLeft="10dp"
57
        android:layout_marginRight="10dp"
58
        android:layout_marginTop="5dp"
59
        android:background="@color/dark_grey"
60
        android:orientation="horizontal">
61 dbddd5c5 Leszek Koltunski
62 354b7db8 Leszek Koltunski
        <ImageView
63 e71baee1 Leszek Koltunski
            android:layout_gravity="top"
64 391d680e leszek
            android:adjustViewBounds="true"
65 354b7db8 Leszek Koltunski
            android:layout_height="wrap_content"
66 e71baee1 Leszek Koltunski
            android:layout_marginStart="5dp"
67 391d680e leszek
            android:layout_marginTop="5dp"
68
            android:layout_marginBottom="5dp"
69 e71baee1 Leszek Koltunski
            android:layout_width="0dp"
70 bf1edbac Leszek Koltunski
            android:layout_weight="0.2"
71 e71baee1 Leszek Koltunski
            android:src="@drawable/ui_contact"/>
72 1cbcc6bf Leszek Koltunski
73 354b7db8 Leszek Koltunski
        <LinearLayout
74 e71baee1 Leszek Koltunski
            android:layout_width="0dp"
75 391d680e leszek
            android:layout_height="wrap_content"
76 e71baee1 Leszek Koltunski
            android:layout_weight="1"
77 354b7db8 Leszek Koltunski
            android:gravity="center|fill_horizontal"
78
            android:background="@color/dark_grey"
79
            android:orientation="vertical">
80 1cbcc6bf Leszek Koltunski
81 354b7db8 Leszek Koltunski
            <TextView
82
               android:id="@+id/about_mail_string"
83
               android:layout_width="wrap_content"
84
               android:layout_height="wrap_content"
85
               android:gravity="start"
86 e71baee1 Leszek Koltunski
               android:textSize="20sp"
87 354b7db8 Leszek Koltunski
               android:text="@string/contact"
88
               android:layout_marginTop="5dp"
89
               android:layout_marginLeft="10dp"
90 bf1edbac Leszek Koltunski
               android:layout_marginRight="10dp"/>
91 e71baee1 Leszek Koltunski
            <TextView
92
               android:id="@+id/about_mail_address"
93
               android:layout_width="wrap_content"
94
               android:layout_height="wrap_content"
95
               android:gravity="start"
96
               android:textSize="14sp"
97 d2f9fa0d Leszek Koltunski
               android:autoLink="email"
98 e71baee1 Leszek Koltunski
               android:text="@string/email_address"
99 354b7db8 Leszek Koltunski
               android:layout_marginLeft="10dp"
100
               android:layout_marginRight="10dp"
101
               android:layout_marginBottom="5dp"/>
102
        </LinearLayout>
103
   </LinearLayout>
104 e71baee1 Leszek Koltunski
105
   <LinearLayout
106
        android:id="@+id/about_new_layout"
107
        android:layout_width="fill_parent"
108 391d680e leszek
        android:layout_height="wrap_content"
109 e71baee1 Leszek Koltunski
        android:gravity="center|fill_horizontal"
110
        android:layout_marginLeft="10dp"
111
        android:layout_marginRight="10dp"
112
        android:layout_marginTop="5dp"
113
        android:background="@color/dark_grey"
114
        android:orientation="horizontal">
115
116
        <ImageView
117
            android:layout_gravity="top"
118 391d680e leszek
            android:adjustViewBounds="true"
119 e71baee1 Leszek Koltunski
            android:layout_height="wrap_content"
120
            android:layout_marginStart="5dp"
121 391d680e leszek
            android:layout_marginTop="5dp"
122
            android:layout_marginBottom="5dp"
123 e71baee1 Leszek Koltunski
            android:layout_width="0dp"
124 bf1edbac Leszek Koltunski
            android:layout_weight="0.2"
125 e71baee1 Leszek Koltunski
            android:src="@drawable/ui_new"/>
126
127
        <ScrollView
128
            android:id="@+id/new_scroll"
129
            android:layout_width="0dp"
130 391d680e leszek
            android:layout_height="wrap_content"
131 e71baee1 Leszek Koltunski
            android:layout_weight="1"
132
            android:paddingTop="10dp"
133
            android:paddingBottom="10dp"
134
            android:paddingLeft="10dp"
135
            android:paddingRight="10dp">
136
137
            <LinearLayout
138 24da418d Leszek Koltunski
                 android:id="@+id/new_main_layout"
139 e71baee1 Leszek Koltunski
                 android:layout_width="match_parent"
140
                 android:layout_height="wrap_content"
141
                 android:orientation="vertical">
142
143
                 <TextView
144 b4ee249e Leszek Koltunski
                     android:id="@+id/about_new_message"
145 e71baee1 Leszek Koltunski
                     android:layout_width="match_parent"
146 bf1edbac Leszek Koltunski
                     android:layout_height="wrap_content"
147 e71baee1 Leszek Koltunski
                     android:gravity="start"/>
148
            </LinearLayout>
149
        </ScrollView>
150
   </LinearLayout>
151
152
   <LinearLayout
153
        android:id="@+id/about_coming_layout"
154
        android:layout_width="fill_parent"
155 391d680e leszek
        android:layout_height="wrap_content"
156 e71baee1 Leszek Koltunski
        android:gravity="center|fill_horizontal"
157
        android:layout_marginLeft="10dp"
158
        android:layout_marginRight="10dp"
159
        android:layout_marginTop="5dp"
160
        android:background="@color/dark_grey"
161
        android:orientation="horizontal">
162
163
        <ImageView
164
            android:layout_gravity="top"
165 391d680e leszek
            android:adjustViewBounds="true"
166 e71baee1 Leszek Koltunski
            android:layout_height="wrap_content"
167
            android:layout_marginStart="5dp"
168 391d680e leszek
            android:layout_marginTop="5dp"
169
            android:layout_marginBottom="5dp"
170 e71baee1 Leszek Koltunski
            android:layout_width="0dp"
171 bf1edbac Leszek Koltunski
            android:layout_weight="0.2"
172 5a26352b Leszek Koltunski
            android:src="@drawable/ui_todo"/>
173 e71baee1 Leszek Koltunski
174
        <ScrollView
175
            android:id="@+id/coming_scroll"
176
            android:layout_width="0dp"
177 391d680e leszek
            android:layout_height="wrap_content"
178 e71baee1 Leszek Koltunski
            android:layout_weight="1"
179
            android:paddingTop="10dp"
180
            android:paddingBottom="10dp"
181
            android:paddingLeft="10dp"
182
            android:paddingRight="10dp">
183
184
            <LinearLayout
185 24da418d Leszek Koltunski
                 android:id="@+id/coming_main_layout"
186 e71baee1 Leszek Koltunski
                 android:layout_width="match_parent"
187
                 android:layout_height="wrap_content"
188
                 android:orientation="vertical">
189
190
                 <TextView
191 b4ee249e Leszek Koltunski
                     android:id="@+id/about_coming_message"
192 e71baee1 Leszek Koltunski
                     android:layout_width="match_parent"
193 bf1edbac Leszek Koltunski
                     android:layout_height="wrap_content"
194 e71baee1 Leszek Koltunski
                     android:gravity="start"/>
195
            </LinearLayout>
196
        </ScrollView>
197
   </LinearLayout>
198
199 354b7db8 Leszek Koltunski
</LinearLayout>