20 lines
778 B
XML
20 lines
778 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#daffffff">
|
|
<RelativeLayout
|
|
android:layout_width="220dp"
|
|
android:layout_height="80dp"
|
|
android:background="#daffffff">
|
|
<TextView
|
|
android:id="@+id/tv_loadingmsg"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#000000"
|
|
android:layout_centerInParent="true"
|
|
android:background="@android:color/transparent"
|
|
android:textSize="16dp"/>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |