|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
|
6 |
|
7 <!-- Empty spacer view --> |
|
8 <View android:layout_width="fill_parent" |
|
9 android:layout_height="0dip" |
|
10 android:layout_weight="1"/> |
|
11 |
|
12 <ImageView android:id="@+id/image" |
|
13 android:layout_width="fill_parent" |
|
14 android:layout_height="wrap_content" |
|
15 android:gravity="top|center" |
|
16 android:scaleType="center" |
|
17 android:paddingBottom="10dp"/> |
|
18 |
|
19 <TextView android:id="@+id/message" |
|
20 android:layout_width="fill_parent" |
|
21 android:layout_height="0dip" |
|
22 android:gravity="top|center" |
|
23 android:textAppearance="@style/TextAppearance.EmptyMessage" |
|
24 android:paddingLeft="50dp" |
|
25 android:paddingRight="50dp" |
|
26 android:layout_weight="3"/> |
|
27 |
|
28 <Button android:id="@+id/button" |
|
29 android:layout_width="fill_parent" |
|
30 android:layout_height="wrap_content" |
|
31 android:layout_marginLeft="25dp" |
|
32 android:layout_marginRight="25dp" |
|
33 android:layout_marginBottom="25dp" |
|
34 android:gravity="bottom|center" |
|
35 android:textAppearance="@style/TextAppearance.EmptyMessage" |
|
36 android:background="@drawable/panel_auth_button" |
|
37 android:padding="20dp"/> |
|
38 |
|
39 </merge> |