12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/home_port_detail_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/black_shade" >
- <LinearLayout
- android:id="@+id/home_port_lisetview_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_marginBottom="10dp"
- android:orientation="vertical">
- <TextView
- android:id="@+id/notice"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/textview_bg"
- android:gravity="center"
- android:text="确定变更该危货作业"
- android:textColor="@color/royalblue"
- android:textSize="22sp" />
- <TextView
- android:id="@+id/cancel"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="5dp"
- android:background="@drawable/textview_bg"
- android:gravity="center"
- android:text="取消"
- android:textColor="@color/royalblue"
- android:textSize="22sp" />
-
- </LinearLayout>
- </RelativeLayout>
|