x7_act_base_right.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:id="@+id/rootView"
  7. tools:ignore="MissingDefaultResource">
  8. <ImageView
  9. android:id="@+id/x7_right_arrow"
  10. android:layout_width="67dp"
  11. android:layout_height="46dp"
  12. android:layout_alignParentRight="true"
  13. android:clickable="true"
  14. android:layout_centerVertical="true"
  15. android:paddingBottom="10dp"
  16. android:paddingTop="10dp"
  17. android:src="@drawable/x7_title_right_arrow_port" />
  18. <ImageView
  19. android:id="@+id/x7_left_arrow"
  20. android:layout_width="67dp"
  21. android:layout_height="46dp"
  22. android:layout_alignParentLeft="true"
  23. android:clickable="true"
  24. android:paddingBottom="10dp"
  25. android:paddingTop="10dp"
  26. android:layout_centerVertical="true"
  27. android:src="@drawable/x7_title_left_arrow_port" />
  28. <LinearLayout
  29. android:id="@+id/base_ll"
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:orientation="vertical"
  33. android:layout_toRightOf="@+id/x7_left_arrow"
  34. android:visibility="visible"
  35. >
  36. <!--点击空白处关闭-->
  37. <TextView
  38. android:id="@+id/closeHint_tv"
  39. android:clickable="true"
  40. android:layout_width="match_parent"
  41. android:layout_height="86dp"
  42. android:textSize="17dp"
  43. android:text=""
  44. android:gravity="center"
  45. android:textColor="@color/x7_white"
  46. />
  47. <FrameLayout
  48. android:id="@+id/base_fl"
  49. android:layout_width="match_parent"
  50. android:layout_height="match_parent"
  51. android:background="@drawable/x7_corner_10_solid_white_right"
  52. >
  53. </FrameLayout>
  54. </LinearLayout>
  55. </RelativeLayout>