1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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: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_right_close"
- android:layout_width="67dp"
- android:layout_height="67dp"
- android:layout_centerVertical="true"
- android:layout_toLeftOf="@+id/x7_right_arrow"
- android:clickable="true"
- android:paddingTop="10dp"
- android:paddingBottom="10dp"
- android:src="@drawable/x7_gonggao_cancell"
- android:visibility="gone" />
- <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" />
- <!--有公告的时候并且横屏的左侧关闭按钮-->
- <ImageView
- android:id="@+id/x7_left_close"
- android:layout_width="67dp"
- android:layout_height="67dp"
- android:layout_centerVertical="true"
- android:layout_toRightOf="@+id/x7_left_arrow"
- android:clickable="true"
- android:paddingTop="10dp"
- android:paddingBottom="10dp"
- android:src="@drawable/x7_gonggao_cancell"
- android:visibility="gone" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="left"
- android:orientation="horizontal"
- android:weightSum="2">
- <LinearLayout
- android:id="@+id/base_ll"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/base_fl"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/x7_white"/>
- </LinearLayout>
- </LinearLayout>
- <View
- android:id="@+id/line_center"
- android:layout_width="1px"
- android:layout_height="match_parent"
- android:layout_centerInParent="true"/>
- <TextView
- android:id="@+id/closeHint_tv"
- android:layout_width="80dp"
- android:layout_height="match_parent"
- android:layout_alignLeft="@+id/line_center"
- android:clickable="true"
- android:gravity="center"
- android:textColor="@color/x7_white"
- android:textSize="17dp" />
- </RelativeLayout>
|