nim_team_name_activity.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <android.support.v7.widget.Toolbar
  16. android:id="@+id/toolbar"
  17. android:layout_width="match_parent"
  18. android:layout_height="?attr/actionBarSize"
  19. android:background="?attr/colorPrimary"
  20. app:titleTextAppearance="@style/Toolbar.TitleText">
  21. <include layout="@layout/nim_action_bar_right_clickable_tv" />
  22. </android.support.v7.widget.Toolbar>
  23. </android.support.design.widget.AppBarLayout>
  24. <EditText
  25. android:id="@+id/discussion_name"
  26. style="@style/blue_bottom_line_edit_text_style"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="10dip"
  30. android:layout_marginRight="10dip"
  31. android:layout_marginTop="16dip"
  32. android:hint="@string/team_settings_set_name"
  33. android:imeOptions="actionDone" />
  34. </LinearLayout>