123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?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_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_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" />
- <!--有公告的时候并且横屏的左侧关闭按钮-->
- <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="right"
- 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"
- android:visibility="visible">
- <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_alignRight="@+id/line_center"
- android:clickable="true"
- android:gravity="center"
- android:textColor="@color/x7_white"
- android:textSize="17dp" />
- </RelativeLayout>
|