Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ 58fd2ec0

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

    
18
        <ImageView
19
            android:layout_gravity="top"
20
            android:adjustViewBounds="true"
21
            android:layout_height="wrap_content"
22
            android:layout_marginStart="5dp"
23
            android:layout_marginTop="5dp"
24
            android:layout_marginBottom="5dp"
25
            android:layout_width="0dp"
26
            android:layout_weight="0.2"
27
            android:src="@drawable/ui_share"/>
28

    
29
        <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
   </LinearLayout>
50

    
51
   <LinearLayout
52
        android:id="@+id/about_email_layout"
53
        android:layout_width="fill_parent"
54
        android:layout_height="wrap_content"
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:adjustViewBounds="true"
65
            android:layout_height="wrap_content"
66
            android:layout_marginStart="5dp"
67
            android:layout_marginTop="5dp"
68
            android:layout_marginBottom="5dp"
69
            android:layout_width="0dp"
70
            android:layout_weight="0.2"
71
            android:src="@drawable/ui_contact"/>
72

    
73
        <LinearLayout
74
            android:layout_width="0dp"
75
            android:layout_height="wrap_content"
76
            android:layout_weight="1"
77
            android:gravity="center|fill_horizontal"
78
            android:background="@color/dark_grey"
79
            android:orientation="vertical">
80

    
81
            <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
               android:textSize="20sp"
87
               android:text="@string/contact"
88
               android:layout_marginTop="5dp"
89
               android:layout_marginLeft="10dp"
90
               android:layout_marginRight="10dp"/>
91
            <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
               android:autoLink="email"
98
               android:text="@string/email_address"
99
               android:layout_marginLeft="10dp"
100
               android:layout_marginRight="10dp"
101
               android:layout_marginBottom="5dp"/>
102
        </LinearLayout>
103
   </LinearLayout>
104

    
105
   <LinearLayout
106
        android:id="@+id/about_new_layout"
107
        android:layout_width="fill_parent"
108
        android:layout_height="wrap_content"
109
        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
            android:adjustViewBounds="true"
119
            android:layout_height="wrap_content"
120
            android:layout_marginStart="5dp"
121
            android:layout_marginTop="5dp"
122
            android:layout_marginBottom="5dp"
123
            android:layout_width="0dp"
124
            android:layout_weight="0.2"
125
            android:src="@drawable/ui_new"/>
126

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

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

    
143
                 <TextView
144
                     android:id="@+id/about_new_message"
145
                     android:layout_width="match_parent"
146
                     android:layout_height="wrap_content"
147
                     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
        android:layout_height="wrap_content"
156
        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
            android:adjustViewBounds="true"
166
            android:layout_height="wrap_content"
167
            android:layout_marginStart="5dp"
168
            android:layout_marginTop="5dp"
169
            android:layout_marginBottom="5dp"
170
            android:layout_width="0dp"
171
            android:layout_weight="0.2"
172
            android:src="@drawable/ui_todo"/>
173

    
174
        <ScrollView
175
            android:id="@+id/coming_scroll"
176
            android:layout_width="0dp"
177
            android:layout_height="wrap_content"
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/about_coming_message"
192
                     android:layout_width="match_parent"
193
                     android:layout_height="wrap_content"
194
                     android:gravity="start"/>
195
            </LinearLayout>
196
        </ScrollView>
197
   </LinearLayout>
198

    
199
</LinearLayout>
(5-5/56)