mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
870 B
XML
24 lines
870 B
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_connect" />
|
|
<View
|
|
style="@style/SyncViewLine" />
|
|
<ProgressBar
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminateOnly="true"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp" />
|
|
<TextView
|
|
style="@style/SyncTextItem"
|
|
android:text="@string/sync_jpake_subtitle_waiting" />
|
|
<Button
|
|
style="@style/SyncButtonCommon"
|
|
android:onClick="cancelClickHandler"
|
|
android:text="@string/sync_button_cancel" />
|
|
</TableLayout>
|