mirror of
https://github.com/etesync/android
synced 2024-11-16 04:49:06 +00:00
83eecc0c72
* new icons with 3D effect as required in Android Iconography Guide * target SDK version updated to 20 * replaced UI directions left/right by start/end for RTL support * Show "unnamed calendar"/"unnamed address book" instead of "null" in "Select collections" fragment * "Add account" button now directly adds DAVdroid account * .svgz for "How DAVdroid interacts with other components" added to doc
24 lines
807 B
XML
24 lines
807 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:orientation="horizontal"
|
|
android:padding="20dp" >
|
|
|
|
<ProgressBar
|
|
style="?android:attr/progressBarStyleLarge"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginEnd="10dp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/setup_querying_server" />
|
|
|
|
</LinearLayout>
|