123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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:id="@+id/rootView"
- android:background="@android:color/transparent"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:ignore="MissingDefaultResource">
- <ImageView
- android:id="@+id/x7_right_arrow"
- android:layout_width="67dp"
- android:layout_height="46dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:clickable="true"
- android:paddingTop="10dp"
- android:paddingBottom="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:layout_centerVertical="true"
- android:clickable="true"
- android:paddingTop="10dp"
- android:paddingBottom="10dp"
- android:src="@drawable/x7_title_left_arrow_port" />
- <TextView
- android:id="@+id/closeHint_tv"
- android:layout_width="match_parent"
- android:layout_height="86dp"
- android:clickable="true"
- android:gravity="center"
- android:text=""
- android:textColor="@color/x7_white"
- android:textSize="17dp"/>
- <LinearLayout
- android:id="@+id/base_ll"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/closeHint_tv"
- android:layout_toLeftOf="@id/x7_right_arrow"
- android:orientation="vertical"
- android:visibility="visible">
- <FrameLayout
- android:id="@+id/base_fl"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/x7_corner_10_solid_white_left" />
- </LinearLayout>
- </RelativeLayout>
|