mobile/android/base/resources/layout/sync_setup_failure.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 7 style="@style/SyncContainer" >
michael@0 8
michael@0 9 <TextView
michael@0 10 style="@style/SyncTop"
michael@0 11 android:text="@string/sync_title_fail" />
michael@0 12
michael@0 13 <ScrollView
michael@0 14 style="@style/SyncMiddle" >
michael@0 15
michael@0 16 <LinearLayout
michael@0 17 style="@style/SyncLayout.Vertical" >
michael@0 18 <TextView android:id="@+id/failure_subtitle1"
michael@0 19 style="@style/SyncTextItem"
michael@0 20 android:paddingBottom="@dimen/SyncSpace"
michael@0 21 android:text="@string/sync_subtitle_fail" />
michael@0 22
michael@0 23 <TextView android:id="@+id/failure_subtitle2"
michael@0 24 style="@style/SyncTextItem"
michael@0 25 android:text="@string/sync_subtitle_failmultiple" />
michael@0 26 </LinearLayout>
michael@0 27 </ScrollView>
michael@0 28
michael@0 29 <LinearLayout
michael@0 30 style="@style/SyncBottomContainer" >
michael@0 31
michael@0 32 <LinearLayout
michael@0 33 style="@style/SyncBottom" >
michael@0 34
michael@0 35 <Button
michael@0 36 style="@style/SyncButton"
michael@0 37 android:onClick="tryAgainClickHandler"
michael@0 38 android:text="@string/sync_button_tryagain" />
michael@0 39
michael@0 40 <Button
michael@0 41 style="@style/SyncButton"
michael@0 42 android:onClick="manualClickHandler"
michael@0 43 android:text="@string/sync_button_manual" />
michael@0 44
michael@0 45 <Button
michael@0 46 style="@style/SyncButton"
michael@0 47 android:onClick="cancelClickHandler"
michael@0 48 android:text="@string/sync_button_cancel" />
michael@0 49 </LinearLayout>
michael@0 50
michael@0 51 </LinearLayout>
michael@0 52 </LinearLayout>

mercurial