x7_act_base_left.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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:id="@+id/rootView"
  5. android:background="@android:color/transparent"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:ignore="MissingDefaultResource">
  9. <ImageView
  10. android:id="@+id/x7_right_arrow"
  11. android:layout_width="67dp"
  12. android:layout_height="46dp"
  13. android:layout_alignParentRight="true"
  14. android:layout_centerVertical="true"
  15. android:clickable="true"
  16. android:paddingTop="10dp"
  17. android:paddingBottom="10dp"
  18. android:src="@drawable/x7_title_right_arrow_port" />
  19. <ImageView
  20. android:id="@+id/x7_left_arrow"
  21. android:layout_width="67dp"
  22. android:layout_height="46dp"
  23. android:layout_alignParentLeft="true"
  24. android:layout_centerVertical="true"
  25. android:clickable="true"
  26. android:paddingTop="10dp"
  27. android:paddingBottom="10dp"
  28. android:src="@drawable/x7_title_left_arrow_port" />
  29. <TextView
  30. android:id="@+id/closeHint_tv"
  31. android:layout_width="match_parent"
  32. android:layout_height="86dp"
  33. android:clickable="true"
  34. android:gravity="center"
  35. android:text=""
  36. android:textColor="@color/x7_white"
  37. android:textSize="17dp"/>
  38. <LinearLayout
  39. android:id="@+id/base_ll"
  40. android:layout_width="match_parent"
  41. android:layout_height="match_parent"
  42. android:layout_below="@id/closeHint_tv"
  43. android:layout_toLeftOf="@id/x7_right_arrow"
  44. android:orientation="vertical"
  45. android:visibility="visible">
  46. <FrameLayout
  47. android:id="@+id/base_fl"
  48. android:layout_width="match_parent"
  49. android:layout_height="match_parent"
  50. android:background="@drawable/x7_corner_10_solid_white_left" />
  51. </LinearLayout>
  52. </RelativeLayout>