123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout 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:orientation="vertical"
- android:padding="5dp"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp">
- <RelativeLayout
- android:id="@+id/tysdkn_rl_news"
- android:layout_width="match_parent"
- android:layout_height="75dp"
- android:background="@drawable/tysdkn_gift_listview_bg"
- >
- <ImageView
- android:id="@+id/tysdkn_iv_news_red"
- android:layout_width="5dp"
- android:layout_height="5dp"
- android:layout_marginLeft="5dp"
- android:layout_alignParentRight="true"
- android:src="@drawable/tysdkn_red_p"
- android:visibility="invisible"
- tools:visibility="visible" />
- <TextView
- android:id="@+id/tysdkn_tv_item_news_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="15dp"
- android:maxEms="10"
- android:ellipsize="end"
- android:lines="1"
- android:text="公告标题"
- android:textColor="#111111"
- android:textSize="14sp"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_marginBottom="12dp"
- android:layout_marginLeft="10dp"
- android:orientation="horizontal">
- <!--<LinearLayout-->
- <!--android:layout_width="0dp"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:layout_marginRight="10dp"-->
- <!--android:layout_weight="1">-->
- <TextView
- android:id="@+id/tysdkn_tv_item_news_date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="5dp"
- android:text="日期"
- android:textColor="#666666"
- android:textSize="10sp" />
- <TextView
- android:id="@+id/tysdkn_tv_system_icon"
- android:layout_width="30dp"
- android:layout_height="18dp"
- android:gravity="center"
- android:text="[系统]"
- android:textColor="#30B8FF"
- android:textSize="10sp" />
- <!--</LinearLayout>-->
- </LinearLayout>
- <TextView
- android:id="@+id/tysdkn_news_see_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="#FFFFFF"
- android:textSize="12sp"
- android:layout_alignParentRight="true"
- android:layout_marginRight="13dp"
- android:layout_centerVertical="true"
- android:background="@drawable/tysdkn_gift_blue_bg"
- android:text="查看"/>
- </RelativeLayout>
- </LinearLayout>
|