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

  • 如果是禁止获取焦点则在文本框中加入
 android:focusable="true"
  • 如果是初始化页面时禁止获得焦点则在父类的属性中加入
android:focusable="true"
android:focusableInTouchMode="true" 

你可能感兴趣的:(android,进入页面textview默认获得焦点问题,如何取消焦点)