12345678910111213141516171819202122 |
- <?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="match_parent"
- android:layout_marginTop="40dp"
- android:orientation="vertical">
- <com.jsjty.jdc.app.widget.view.ListViewCompat
- android:id="@+id/list_fragment_message"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="40dp" />
- <TextView
- android:id="@+id/tv_message_null"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="@string/empty_message_layout"
- android:textSize="@dimen/text_size_20"
- android:visibility="gone" />
- </RelativeLayout>
|