android,进入页面textview默认获得焦点问题,如何取消焦点

来源:互联网 发布:java管理bug工具 编辑:程序博客网 时间:2024/05/23 18:11
  • 如果是禁止获取焦点则在文本框中加入
 android:focusable="true"
  • 如果是初始化页面时禁止获得焦点则在父类的属性中加入
android:focusable="true"android:focusableInTouchMode="true" 
阅读全文
0 0