area_group_create_group.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <com.sheishuo.app.common.views.BaseToolbar
  8. android:id="@+id/toolbar"
  9. android:layout_width="match_parent"
  10. android:layout_height="@dimen/action_bar_height"
  11. style="@style/fullToolbarStyle"
  12. android:title="创建群组"
  13. app:right_text="创建"/>
  14. <android.support.design.widget.TextInputLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:hint="请输入群名称"
  18. android:padding="8dp">
  19. <EditText
  20. android:id="@+id/create_group_name"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content" />
  23. </android.support.design.widget.TextInputLayout>
  24. <android.support.design.widget.TextInputLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:padding="8dp">
  28. <EditText
  29. android:id="@+id/create_group_announcement"
  30. android:layout_width="match_parent"
  31. android:layout_height="256dp"
  32. android:hint="请输入群公告"
  33. android:gravity="start"/>
  34. </android.support.design.widget.TextInputLayout>
  35. <HorizontalScrollView
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content">
  38. <ImageView
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content" />
  41. </HorizontalScrollView>
  42. </LinearLayout>