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.

     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/. -->
     6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     7   style="@style/SyncContainer" >
     9   <TextView
    10     style="@style/SyncTop"
    11     android:text="@string/sync_title_fail" />
    13   <ScrollView
    14     style="@style/SyncMiddle" >
    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" />
    23         <TextView android:id="@+id/failure_subtitle2"
    24           style="@style/SyncTextItem"
    25           android:text="@string/sync_subtitle_failmultiple" />
    26       </LinearLayout>
    27     </ScrollView>
    29   <LinearLayout
    30     style="@style/SyncBottomContainer" >
    32     <LinearLayout
    33       style="@style/SyncBottom" >
    35       <Button
    36         style="@style/SyncButton"
    37         android:onClick="tryAgainClickHandler"
    38         android:text="@string/sync_button_tryagain" />
    40       <Button
    41         style="@style/SyncButton"
    42         android:onClick="manualClickHandler"
    43         android:text="@string/sync_button_manual" />
    45        <Button
    46         style="@style/SyncButton"
    47         android:onClick="cancelClickHandler"
    48         android:text="@string/sync_button_cancel" />
    49     </LinearLayout>
    51   </LinearLayout>
    52 </LinearLayout>

mercurial