fragment_message.xml 866 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:layout_marginTop="40dp"
  6. android:orientation="vertical">
  7. <com.jsjty.jdc.app.widget.view.ListViewCompat
  8. android:id="@+id/list_fragment_message"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:layout_marginBottom="40dp" />
  12. <TextView
  13. android:id="@+id/tv_message_null"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_centerInParent="true"
  17. android:text="@string/empty_message_layout"
  18. android:textSize="@dimen/text_size_20"
  19. android:visibility="gone" />
  20. </RelativeLayout>