123456789101112131415161718192021222324252627282930313233 |
- <?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">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="#ffffff">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="消息"
- android:textColor="#30B8FF"
- android:textSize="16sp" />
- </RelativeLayout>
- <include layout="@layout/tysdkn_nothing" />
- <include layout="@layout/tysdkn_progressbar" />
- <ListView
- android:id="@+id/tysdkn_lv_news"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="5dp"
- android:divider="@null"
- android:scrollbars="none" />
- </LinearLayout>
|