pop.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/home_port_detail_layout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@drawable/black_shade" >
  7. <LinearLayout
  8. android:id="@+id/home_port_lisetview_layout"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentBottom="true"
  12. android:layout_marginBottom="10dp"
  13. android:orientation="vertical">
  14. <TextView
  15. android:id="@+id/notice"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_marginLeft="10dp"
  19. android:layout_marginRight="10dp"
  20. android:background="@drawable/textview_bg"
  21. android:gravity="center"
  22. android:text="确定变更该危货作业"
  23. android:textColor="@color/royalblue"
  24. android:textSize="22sp" />
  25. <TextView
  26. android:id="@+id/cancel"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="10dp"
  30. android:layout_marginRight="10dp"
  31. android:layout_marginTop="5dp"
  32. android:background="@drawable/textview_bg"
  33. android:gravity="center"
  34. android:text="取消"
  35. android:textColor="@color/royalblue"
  36. android:textSize="22sp" />
  37. </LinearLayout>
  38. </RelativeLayout>