Project

General

Profile

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

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

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent"
5
    android:background="@color/grey"
6
    android:orientation="vertical">
7

    
8
    <LinearLayout
9
        android:id="@+id/about_share_layout"
10
        android:layout_width="fill_parent"
11
        android:layout_height="0dp"
12
        android:layout_weight="0.4"
13
        android:gravity="center|fill_horizontal"
14
        android:layout_marginLeft="10dp"
15
        android:layout_marginRight="10dp"
16
        android:layout_marginTop="5dp"
17
        android:background="@color/dark_grey"
18
        android:orientation="horizontal">
19

    
20
        <ImageView
21
            android:layout_gravity="top"
22
            android:layout_height="wrap_content"
23
            android:layout_marginStart="5dp"
24
            android:layout_width="0dp"
25
            android:layout_weight="0.25"
26
            android:src="@drawable/ui_share"/>
27

    
28
        <LinearLayout
29
            android:layout_width="0dp"
30
            android:layout_height="match_parent"
31
            android:layout_weight="1"
32
            android:gravity="center|fill_horizontal"
33
            android:background="@color/dark_grey"
34
            android:orientation="vertical">
35

    
36
            <TextView
37
                android:id="@+id/about_share_string"
38
                android:layout_width="match_parent"
39
                android:layout_height="wrap_content"
40
                android:gravity="start"
41
                android:textSize="20sp"
42
                android:text="@string/share"
43
                android:layout_marginTop="5dp"
44
                android:layout_marginLeft="10dp"
45
                android:layout_marginRight="10dp"
46
                android:layout_marginBottom="5dp"/>
47
        </LinearLayout>
48
   </LinearLayout>
49

    
50
   <LinearLayout
51
        android:id="@+id/about_email_layout"
52
        android:layout_width="fill_parent"
53
        android:layout_height="0dp"
54
        android:layout_weight="0.4"
55
        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

    
62
        <ImageView
63
            android:layout_gravity="top"
64
            android:layout_height="wrap_content"
65
            android:layout_marginStart="5dp"
66
            android:layout_width="0dp"
67
            android:layout_weight="0.25"
68
            android:src="@drawable/ui_contact"/>
69

    
70
        <LinearLayout
71
            android:layout_width="0dp"
72
            android:layout_height="match_parent"
73
            android:layout_weight="1"
74
            android:gravity="center|fill_horizontal"
75
            android:background="@color/dark_grey"
76
            android:orientation="vertical">
77

    
78
            <TextView
79
               android:id="@+id/about_mail_string"
80
               android:layout_width="wrap_content"
81
               android:layout_height="wrap_content"
82
               android:gravity="start"
83
               android:textSize="20sp"
84
               android:text="@string/contact"
85
               android:layout_marginTop="5dp"
86
               android:layout_marginLeft="10dp"
87
               android:layout_marginRight="10dp"
88
               android:layout_marginBottom="5dp"/>
89
            <TextView
90
               android:id="@+id/about_mail_address"
91
               android:layout_width="wrap_content"
92
               android:layout_height="wrap_content"
93
               android:gravity="start"
94
               android:textSize="14sp"
95
               android:autoLink="email"
96
               android:text="@string/email_address"
97
               android:layout_marginLeft="10dp"
98
               android:layout_marginRight="10dp"
99
               android:layout_marginBottom="5dp"/>
100
        </LinearLayout>
101
   </LinearLayout>
102

    
103
   <LinearLayout
104
        android:id="@+id/about_new_layout"
105
        android:layout_width="fill_parent"
106
        android:layout_height="0dp"
107
        android:layout_weight="1"
108
        android:gravity="center|fill_horizontal"
109
        android:layout_marginLeft="10dp"
110
        android:layout_marginRight="10dp"
111
        android:layout_marginTop="5dp"
112
        android:background="@color/dark_grey"
113
        android:orientation="horizontal">
114

    
115
        <ImageView
116
            android:layout_gravity="top"
117
            android:layout_height="wrap_content"
118
            android:layout_marginStart="5dp"
119
            android:layout_width="0dp"
120
            android:layout_weight="0.25"
121
            android:src="@drawable/ui_new"/>
122

    
123
        <ScrollView
124
            android:id="@+id/new_scroll"
125
            android:layout_width="0dp"
126
            android:layout_height="match_parent"
127
            android:layout_weight="1"
128
            android:paddingTop="10dp"
129
            android:paddingBottom="10dp"
130
            android:paddingLeft="10dp"
131
            android:paddingRight="10dp">
132

    
133
            <LinearLayout
134
                 android:id="@+id/new_main_layout"
135
                 android:layout_width="match_parent"
136
                 android:layout_height="wrap_content"
137
                 android:orientation="vertical">
138

    
139
                 <TextView
140
                     android:id="@+id/about_new_message"
141
                     android:layout_width="match_parent"
142
                     android:layout_height="match_parent"
143
                     android:gravity="start"/>
144
            </LinearLayout>
145
        </ScrollView>
146
   </LinearLayout>
147

    
148
   <LinearLayout
149
        android:id="@+id/about_coming_layout"
150
        android:layout_width="fill_parent"
151
        android:layout_height="0dp"
152
        android:layout_weight="1"
153
        android:gravity="center|fill_horizontal"
154
        android:layout_marginLeft="10dp"
155
        android:layout_marginRight="10dp"
156
        android:layout_marginTop="5dp"
157
        android:background="@color/dark_grey"
158
        android:orientation="horizontal">
159

    
160
        <ImageView
161
            android:layout_gravity="top"
162
            android:layout_height="wrap_content"
163
            android:layout_marginStart="5dp"
164
            android:layout_width="0dp"
165
            android:layout_weight="0.25"
166
            android:src="@drawable/ui_coming"/>
167

    
168
        <ScrollView
169
            android:id="@+id/coming_scroll"
170
            android:layout_width="0dp"
171
            android:layout_height="match_parent"
172
            android:layout_weight="1"
173
            android:paddingTop="10dp"
174
            android:paddingBottom="10dp"
175
            android:paddingLeft="10dp"
176
            android:paddingRight="10dp">
177

    
178
            <LinearLayout
179
                 android:id="@+id/coming_main_layout"
180
                 android:layout_width="match_parent"
181
                 android:layout_height="wrap_content"
182
                 android:orientation="vertical">
183

    
184
                 <TextView
185
                     android:id="@+id/about_coming_message"
186
                     android:layout_width="match_parent"
187
                     android:layout_height="match_parent"
188
                     android:gravity="start"/>
189
            </LinearLayout>
190
        </ScrollView>
191
   </LinearLayout>
192

    
193
</LinearLayout>
(6-6/44)