Files
MoGoEagleEye/libraries/mapmodule/src/main/res/layout/dialog_wait.xml
2023-08-07 11:21:55 +08:00

64 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<RelativeLayout
android:id="@+id/box_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="120px"
android:minHeight="120px"
android:visibility="visible">
<RelativeLayout
android:id="@+id/box_bkg"
android:layout_width="120px"
android:layout_height="120px"></RelativeLayout>
<RelativeLayout
android:id="@+id/box_progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="13dp"
android:layout_marginRight="15dp">
<com.zhidaoauto.map.sdk.open.dialog.ProgressView
android:id="@+id/progress"
android:layout_width="65dp"
android:layout_height="65dp" />
</RelativeLayout>
<TextView
android:id="@+id/txt_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/box_progress"
android:layout_centerHorizontal="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="12dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="15dp"
android:gravity="center"
android:maxLines="3"
android:text="Tip"
android:textColor="@color/white"
android:textSize="14dp" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>