24 lines
702 B
XML
24 lines
702 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
a:id="@+id/tab_progress"
|
|
a:layout_width="fill_parent"
|
|
a:layout_height="wrap_content"
|
|
a:layout_gravity="top"
|
|
a:orientation="horizontal"
|
|
a:padding="10dp"
|
|
a:visibility="gone" >
|
|
|
|
<ProgressBar
|
|
a:layout_width="16dp"
|
|
a:layout_height="16dp"
|
|
a:layout_gravity="center_vertical"
|
|
a:layout_marginRight="6dp" />
|
|
|
|
<TextView
|
|
a:id="@+id/tab_progress_message"
|
|
a:layout_width="wrap_content"
|
|
a:layout_height="wrap_content"
|
|
a:layout_gravity="center_vertical"
|
|
a:text="@string/progress.wait" />
|
|
|
|
</LinearLayout> |