Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
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">
7 <!-- Empty spacer view -->
8 <View android:layout_width="fill_parent"
9 android:layout_height="0dip"
10 android:layout_weight="1"/>
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"/>
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"/>
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"/>
39 </merge>