nim_team_name_activity.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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:id="@+id/background"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/white"
  8. android:orientation="vertical">
  9. <android.support.design.widget.AppBarLayout
  10. android:id="@+id/app_bar_layout"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:theme="@style/AppTheme.AppBarOverlay"
  14. app:elevation="0dp">
  15. <View
  16. android:id="@+id/statusBar"
  17. android:layout_width="match_parent"
  18. android:layout_height="20dp"/>
  19. <android.support.v7.widget.Toolbar
  20. android:id="@+id/toolbar"
  21. android:layout_width="match_parent"
  22. android:layout_height="?attr/actionBarSize"
  23. android:background="?attr/colorPrimary"
  24. app:titleTextAppearance="@style/Toolbar.TitleText">
  25. <include layout="@layout/nim_action_bar_right_clickable_tv" />
  26. </android.support.v7.widget.Toolbar>
  27. </android.support.design.widget.AppBarLayout>
  28. <EditText
  29. android:id="@+id/discussion_name"
  30. style="@style/blue_bottom_line_edit_text_style"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:layout_marginLeft="10dip"
  34. android:layout_marginRight="10dip"
  35. android:layout_marginTop="16dip"
  36. android:hint="@string/team_settings_set_name"
  37. android:imeOptions="actionDone" />
  38. </LinearLayout>