Edittext不自动获取焦点的方法

版权声明:转载请@我原创地址 https://blog.csdn.net/weixin_39706415/article/details/84435891

解决之道:在EditText的父级控件设置成

android:focusable="true"      

android:focusableInTouchMode="true" 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:fitsSystemWindows="true"
    tools:context="com.zxzd.im.new_branch.chat.CreateGroupChat">

猜你喜欢

转载自blog.csdn.net/weixin_39706415/article/details/84435891
今日推荐