mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/SyncTextFrame" >
|
|
<TextView
|
|
style="@style/SyncTextTitle"
|
|
android:text="@string/sync_title_fail" />
|
|
<View
|
|
style="@style/SyncViewLine" />
|
|
|
|
<TextView
|
|
style="@style/SyncTextItem"
|
|
android:text="@string/sync_subtitle_fail" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
style="@style/SyncButtonCommon"
|
|
android:onClick="tryAgainClickHandler"
|
|
android:text="@string/sync_button_tryagain" />
|
|
|
|
<Button
|
|
style="@style/SyncButtonCommon"
|
|
android:onClick="manualClickHandler"
|
|
android:text="@string/sync_button_manual" />
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
style="@style/SyncButtonCommon"
|
|
android:onClick="cancelClickHandler"
|
|
android:text="@string/sync_button_cancel" />
|
|
</LinearLayout>
|
|
|
|
</TableLayout>
|