nim_advanced_team_search_activity.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:background="@color/white"
  7. android:orientation="vertical">
  8. <android.support.design.widget.AppBarLayout
  9. android:id="@+id/app_bar_layout"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:theme="@style/AppTheme.AppBarOverlay"
  13. app:elevation="0dp">
  14. <android.support.v7.widget.Toolbar
  15. android:id="@+id/toolbar"
  16. android:layout_width="match_parent"
  17. android:layout_height="?attr/actionBarSize"
  18. android:background="?attr/colorPrimary"
  19. app:titleTextAppearance="@style/Toolbar.TitleText">
  20. <include layout="@layout/nim_action_bar_right_clickable_tv" />
  21. </android.support.v7.widget.Toolbar>
  22. </android.support.design.widget.AppBarLayout>
  23. <com.netease.nim.uikit.common.ui.widget.ClearableEditTextWithIcon
  24. android:id="@+id/team_search_edittext"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="10dp"
  28. android:layout_marginRight="10dp"
  29. android:layout_marginTop="20dp"
  30. android:background="@drawable/nim_blue_edit_text_bg"
  31. android:hint="@string/team_search_hint"
  32. android:inputType="number"
  33. android:padding="5dp"
  34. android:paddingLeft="15dp"
  35. android:paddingRight="15dp"
  36. android:textColor="@color/color_black_333333"
  37. android:textColorHint="@color/contact_letter_idx_bg" />
  38. </LinearLayout>