34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/body"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:baselineAligned="false"
|
|
android:padding="16dip">
|
|
|
|
<ProgressBar
|
|
style="@android:style/Widget.DeviceDefault.ProgressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dip"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/mids_sapps_body_waiting_ing"
|
|
android:textSize="@dimen/page_loading_textview_textsize"
|
|
android:fontFamily="sec-roboto-light"
|
|
android:textColor="#252525"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |