nim_advanced_team_create_layout.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. style="@style/scroll_view"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:background="@color/color_background"
  7. android:fillViewport="true"
  8. android:scrollbarStyle="outsideOverlay">
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:orientation="vertical">
  13. <com.netease.nim.uikit.team.ui.TeamInfoGridView
  14. android:id="@+id/team_member_grid_view"
  15. style="@style/grid_view"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:background="@color/color_background"
  19. android:gravity="center"
  20. android:numColumns="4"
  21. android:paddingBottom="25dip"
  22. android:paddingLeft="12dip"
  23. android:paddingRight="12dip"
  24. android:paddingTop="16dip"
  25. android:verticalSpacing="16dip"></com.netease.nim.uikit.team.ui.TeamInfoGridView>
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginBottom="25dp"
  30. android:background="@color/white"
  31. android:orientation="vertical"
  32. android:paddingTop="10dp"
  33. android:paddingBottom="25dp">
  34. <EditText
  35. android:id="@+id/team_name"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:layout_marginLeft="10dp"
  39. android:layout_marginRight="10dp"
  40. android:background="@drawable/nim_gray_edit_text_bg"
  41. android:hint="@string/team_name"
  42. android:padding="10dp" />
  43. <EditText
  44. android:id="@+id/team_introduce"
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:layout_marginLeft="10dp"
  48. android:layout_marginRight="10dp"
  49. android:background="@drawable/nim_gray_edit_text_bg"
  50. android:hint="@string/team_introduce"
  51. android:padding="10dp" />
  52. </LinearLayout>
  53. <include
  54. android:id="@+id/team_authentication_layout"
  55. layout="@layout/nim_advanced_team_info_divider_item" />
  56. </LinearLayout>
  57. </ScrollView>