edit_nick_activity.xml 981 B

1234567891011121314151617181920212223
  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. android:background="@color/white"
  6. android:orientation="vertical">
  7. <com.netease.nim.uikit.common.ui.widget.ClearableEditTextWithIcon
  8. android:id="@+id/nick_edit"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginLeft="10dp"
  12. android:layout_marginRight="10dp"
  13. android:layout_marginTop="20dp"
  14. android:background="@drawable/nim_blue_edit_text_bg"
  15. android:hint="@string/input_nickname"
  16. android:inputType="text"
  17. android:padding="5dp"
  18. android:paddingLeft="15dp"
  19. android:paddingRight="15dp"
  20. android:textColor="@color/color_black_333333"
  21. android:textColorHint="@color/contact_letter_idx_bg"/>
  22. </LinearLayout>