Android :去掉editview的焦点

为什么要去除焦点呢,~

我不想打开键盘的时候他就自动跳出来了

在editview之前加这一个布局就行类

        <View
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:layout_width="0px"
            android:layout_height="0px"/>

猜你喜欢

转载自blog.csdn.net/title71/article/details/114102866