Project

General

Profile

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

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

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="100dp"
12
        android:gravity="center|fill_horizontal"
13
        android:layout_marginLeft="10dp"
14
        android:layout_marginRight="10dp"
15
        android:layout_marginTop="5dp"
16
        android:background="@color/dark_grey"
17
        android:orientation="horizontal">
18

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

    
27
        <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
   </LinearLayout>
48

    
49
   <LinearLayout
50
        android:id="@+id/about_email_layout"
51
        android:layout_width="fill_parent"
52
        android:layout_height="100dp"
53
        android:gravity="center|fill_horizontal"
54
        android:layout_marginLeft="10dp"
55
        android:layout_marginRight="10dp"
56
        android:layout_marginTop="5dp"
57
        android:background="@color/dark_grey"
58
        android:orientation="horizontal">
59

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

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

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

    
110
   <LinearLayout
111
        android:id="@+id/about_new_layout"
112
        android:layout_width="fill_parent"
113
        android:layout_height="150dp"
114
        android:gravity="center|fill_horizontal"
115
        android:layout_marginLeft="10dp"
116
        android:layout_marginRight="10dp"
117
        android:layout_marginTop="5dp"
118
        android:background="@color/dark_grey"
119
        android:orientation="horizontal">
120

    
121
        <ImageView
122
            android:layout_gravity="top"
123
            android:layout_height="wrap_content"
124
            android:layout_marginStart="5dp"
125
            android:layout_width="0dp"
126
            android:layout_weight="0.25"
127
            android:src="@drawable/ui_new"/>
128

    
129
        <ScrollView
130
            android:id="@+id/new_scroll"
131
            android:layout_width="0dp"
132
            android:layout_height="match_parent"
133
            android:layout_weight="1"
134
            android:paddingTop="10dp"
135
            android:paddingBottom="10dp"
136
            android:paddingLeft="10dp"
137
            android:paddingRight="10dp">
138

    
139
            <LinearLayout
140
                 android:id="@+id/new_main_layout"
141
                 android:layout_width="match_parent"
142
                 android:layout_height="wrap_content"
143
                 android:orientation="vertical">
144

    
145
                 <TextView
146
                     android:id="@+id/new_message"
147
                     android:layout_width="match_parent"
148
                     android:layout_height="match_parent"
149
                     android:text="@string/credits1"
150
                     android:gravity="start"/>
151
            </LinearLayout>
152
        </ScrollView>
153
   </LinearLayout>
154

    
155
   <LinearLayout
156
        android:id="@+id/about_coming_layout"
157
        android:layout_width="fill_parent"
158
        android:layout_height="150dp"
159
        android:gravity="center|fill_horizontal"
160
        android:layout_marginLeft="10dp"
161
        android:layout_marginRight="10dp"
162
        android:layout_marginTop="5dp"
163
        android:background="@color/dark_grey"
164
        android:orientation="horizontal">
165

    
166
        <ImageView
167
            android:layout_gravity="top"
168
            android:layout_height="wrap_content"
169
            android:layout_marginStart="5dp"
170
            android:layout_width="0dp"
171
            android:layout_weight="0.25"
172
            android:src="@drawable/ui_coming"/>
173

    
174
        <ScrollView
175
            android:id="@+id/coming_scroll"
176
            android:layout_width="0dp"
177
            android:layout_height="match_parent"
178
            android:layout_weight="1"
179
            android:paddingTop="10dp"
180
            android:paddingBottom="10dp"
181
            android:paddingLeft="10dp"
182
            android:paddingRight="10dp">
183

    
184
            <LinearLayout
185
                 android:id="@+id/coming_main_layout"
186
                 android:layout_width="match_parent"
187
                 android:layout_height="wrap_content"
188
                 android:orientation="vertical">
189

    
190
                 <TextView
191
                     android:id="@+id/coming_message"
192
                     android:layout_width="match_parent"
193
                     android:layout_height="match_parent"
194
                     android:text="@string/credits2"
195
                     android:gravity="start"/>
196
            </LinearLayout>
197
        </ScrollView>
198
   </LinearLayout>
199

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