Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ 7d1ba3d2

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