Newer
Older
mapCollector / app / src / main / res / layout / layout_mountpoint_dialog.xml
Pengxh on 24 Sep 2021 1 KB 首次提交
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/app_margin"
        android:orientation="horizontal">

        <TextView
            style="@style/AppText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="@string/app_set_rover_mountpoint" />

        <TextView
            style="@style/AppText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="@string/app_set_rover_mountpoint_Identifier" />

        <TextView
            style="@style/AppText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="@string/app_set_rover_mountpoint_format" />

    </LinearLayout>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_divider_width"
        android:background="@color/app_divider_lineColor" />

    <ListView
        android:id="@+id/lv_mountpoint"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>