123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#ffffff"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="#FFFFFF">
- <ImageView
- android:id="@+id/tysdkn_news_info_back"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:padding="15dp"
- android:layout_centerVertical="true"
- android:src="@drawable/tysdkn_recahrge_back_blue_left" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="消息详情"
- android:textColor="#30B8FF"
- android:textSize="16sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_marginTop="9dp"
- android:layout_marginBottom="10dp"
- android:background="#FFEEEEEE" />
- <ScrollView
- android:scrollbars="none"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tysdkn_tv_news_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="12dp"
- android:text="消息标题"
- android:textColor="#000000"
- android:textSize="16sp"
- android:textStyle="bold" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="7dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tysdkn_news_date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="13dp"
- android:text="日期"
- android:textColor="#757B8F"
- android:textSize="12sp" />
- <TextView
- android:id="@+id/tysdkn_tv_news_class"
- android:layout_width="34dp"
- android:layout_height="18dp"
- android:background="@drawable/tysdkn_bg_yuanjiao_5"
- android:gravity="center"
- android:text="系统"
- android:textColor="#ffffff"
- android:textSize="11sp" />
- </LinearLayout>
- <TextView
- android:id="@+id/tysdkn_tv_news_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="12dp"
- android:layout_marginRight="12dp"
- android:layout_marginTop="10dp"
- android:text="消息内容"
- android:lineSpacingExtra="5dp"
- android:letterSpacing="0.1"
- android:textColor="#FF111111"
- android:textSize="14sp" />
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|