Project

General

Profile

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

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

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="0dp"
12
        android:layout_weight="0.12"
13
        android:gravity="center|fill_horizontal"
14
        android:layout_marginLeft="10dp"
15
        android:layout_marginRight="10dp"
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.2"
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="0dp"
53
        android:layout_weight="0.12"
54
        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

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

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

    
77
            <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
               android:textSize="20sp"
83
               android:text="@string/contact"
84
               android:layout_marginTop="5dp"
85
               android:layout_marginLeft="10dp"
86
               android:layout_marginRight="10dp"/>
87
            <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
               android:autoLink="email"
94
               android:text="@string/email_address"
95
               android:layout_marginLeft="10dp"
96
               android:layout_marginRight="10dp"
97
               android:layout_marginBottom="5dp"/>
98
        </LinearLayout>
99
   </LinearLayout>
100

    
101
   <LinearLayout
102
        android:id="@+id/about_new_layout"
103
        android:layout_width="fill_parent"
104
        android:layout_height="0dp"
105
        android:layout_weight="0.31"
106
        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
            android:layout_weight="0.2"
119
            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
                 android:id="@+id/new_main_layout"
133
                 android:layout_width="match_parent"
134
                 android:layout_height="wrap_content"
135
                 android:orientation="vertical">
136

    
137
                 <TextView
138
                     android:id="@+id/about_new_message"
139
                     android:layout_width="match_parent"
140
                     android:layout_height="wrap_content"
141
                     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
        android:layout_height="0dp"
150
        android:layout_weight="0.45"
151
        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
            android:layout_weight="0.2"
164
            android:src="@drawable/ui_todo"/>
165

    
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
                 android:id="@+id/coming_main_layout"
178
                 android:layout_width="match_parent"
179
                 android:layout_height="wrap_content"
180
                 android:orientation="vertical">
181

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

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