zzz_message_view.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingLeft="@dimen/zzz_message_padding_left"
  7. android:paddingRight="@dimen/zzz_message_padding_right">
  8. <TextView
  9. android:id="@+id/zzz_message_empty"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:drawablePadding="@dimen/zzz_exception_description_margin_top"
  13. android:layout_centerInParent="true"
  14. android:gravity="center_horizontal"
  15. android:text="@string/zzz_no_data"
  16. android:textColor="@color/zzz_exception_description_word_color"
  17. android:textSize="@dimen/zzz_exception_description_word_size"
  18. android:visibility="gone"/>
  19. <com.gionee.gamesdk.business.message.MessageListView
  20. android:id="@+id/zzz_listview"
  21. android:layout_width="match_parent"
  22. android:layout_height="match_parent"
  23. android:divider="@null"/>
  24. </RelativeLayout>