Newer
Older
mapCollector / app / src / main / res / layout / common_loading.xml
Pengxh on 24 Sep 2021 1 KB 首次提交
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    android:background="#00FFFFFF">

    <LinearLayout
        android:layout_width="253.33dp"
        android:layout_height="173.33dp"
        android:layout_centerInParent="true"
        android:gravity="center_horizontal"
        android:orientation="vertical">

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_marginTop="53.33dp"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/loading_logo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_loading_logo"
                android:layout_centerInParent="true" />

            <ImageView
                android:id="@+id/loading_round"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_loading_round"
                android:layout_centerInParent="true" />

        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp">

            <TextView
                android:id="@+id/tv_titlename"
                android:textColor="@color/font_gray"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="15sp"
                android:text="@string/hint_loading" />

        </RelativeLayout>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="20dip" />
    </LinearLayout>

</RelativeLayout>