12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/rootView"
- tools:ignore="MissingDefaultResource">
- <ImageView
- android:id="@+id/x7_right_arrow"
- android:layout_width="67dp"
- android:layout_height="46dp"
- android:layout_alignParentRight="true"
- android:clickable="true"
- android:layout_centerVertical="true"
- android:paddingBottom="10dp"
- android:paddingTop="10dp"
- android:src="@drawable/x7_title_right_arrow_port" />
- <ImageView
- android:id="@+id/x7_left_arrow"
- android:layout_width="67dp"
- android:layout_height="46dp"
- android:layout_alignParentLeft="true"
- android:clickable="true"
- android:paddingBottom="10dp"
- android:paddingTop="10dp"
- android:layout_centerVertical="true"
- android:src="@drawable/x7_title_left_arrow_port" />
- <LinearLayout
- android:id="@+id/base_ll"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:layout_toRightOf="@+id/x7_left_arrow"
- android:visibility="visible"
- >
- <!--点击空白处关闭-->
- <TextView
- android:id="@+id/closeHint_tv"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="86dp"
- android:textSize="17dp"
- android:text=""
- android:gravity="center"
- android:textColor="@color/x7_white"
- />
- <FrameLayout
- android:id="@+id/base_fl"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/x7_corner_10_solid_white_right"
- >
- </FrameLayout>
- </LinearLayout>
- </RelativeLayout>
|