Project

General

Profile

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

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

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:text="@string/email_address"
103
               android:layout_marginLeft="10dp"
104
               android:layout_marginRight="10dp"
105
               android:layout_marginBottom="5dp"/>
106
        </LinearLayout>
107
   </LinearLayout>
108

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

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

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

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

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

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

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

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

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

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

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