list_group.xml 797 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="horizontal"
  6. android:background="@color/grayslate">
  7. <ImageView
  8. android:id="@+id/tip_img"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:padding="5px"/>
  12. <TextView
  13. android:id="@+id/group_msg"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:paddingLeft="40px"
  17. android:paddingTop="3px"
  18. android:paddingBottom="3px"
  19. android:textSize="20sp"
  20. android:text="No data"
  21. />
  22. </LinearLayout>