dialog_shipment_list.xml 1.02 KB
<?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="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/shipment_list_title"
        android:textSize="28sp"
        android:textColor="@color/black"
        android:layout_gravity="center_horizontal"/>

    <ListView
        android:id="@+id/shipment_list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="40dp">
    </ListView>

    <Button
        android:id="@+id/shipmentBtn"
        android:layout_width="80dp"
        android:layout_height="50dp"
        android:layout_gravity="bottom|center_horizontal"
        android:text="@string/shipment_one_key"
        android:visibility="gone"
        android:textSize="22sp"/>

</FrameLayout>