12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/x7_half_transparent"
- android:orientation="horizontal"
- android:paddingLeft="20dp"
- android:paddingRight="20dp">
- <TextView
- android:id="@+id/tv_speed_up_hint"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_toLeftOf="@+id/iv_close_notice_hint"
- android:layout_centerVertical="true"
- android:marqueeRepeatLimit="marquee_forever"
- android:singleLine="true"
- android:ellipsize="marquee"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:textColor="@color/x7_green_12cdb0"
- android:textSize="15dp" />
- <ImageView
- android:id="@+id/iv_close_notice_hint"
- android:layout_width="28dp"
- android:layout_height="40dp"
- android:paddingLeft="10dp"
- android:paddingTop="10dp"
- android:paddingBottom="10dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:src="@drawable/x7_gonggao_cancell" />
- </RelativeLayout>
|