|
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 |
|
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
7 style="@style/SyncContainer" > |
|
8 |
|
9 <TextView |
|
10 style="@style/SyncTop" |
|
11 android:text="@string/sync_title_fail" /> |
|
12 |
|
13 <ScrollView |
|
14 style="@style/SyncMiddle" > |
|
15 |
|
16 <LinearLayout |
|
17 style="@style/SyncLayout.Vertical" > |
|
18 <TextView android:id="@+id/failure_subtitle1" |
|
19 style="@style/SyncTextItem" |
|
20 android:paddingBottom="@dimen/SyncSpace" |
|
21 android:text="@string/sync_subtitle_fail" /> |
|
22 |
|
23 <TextView android:id="@+id/failure_subtitle2" |
|
24 style="@style/SyncTextItem" |
|
25 android:text="@string/sync_subtitle_failmultiple" /> |
|
26 </LinearLayout> |
|
27 </ScrollView> |
|
28 |
|
29 <LinearLayout |
|
30 style="@style/SyncBottomContainer" > |
|
31 |
|
32 <LinearLayout |
|
33 style="@style/SyncBottom" > |
|
34 |
|
35 <Button |
|
36 style="@style/SyncButton" |
|
37 android:onClick="tryAgainClickHandler" |
|
38 android:text="@string/sync_button_tryagain" /> |
|
39 |
|
40 <Button |
|
41 style="@style/SyncButton" |
|
42 android:onClick="manualClickHandler" |
|
43 android:text="@string/sync_button_manual" /> |
|
44 |
|
45 <Button |
|
46 style="@style/SyncButton" |
|
47 android:onClick="cancelClickHandler" |
|
48 android:text="@string/sync_button_cancel" /> |
|
49 </LinearLayout> |
|
50 |
|
51 </LinearLayout> |
|
52 </LinearLayout> |