Android 如何让EditText不自动获取焦点

解决之道:在EditText的父级控件中找一个,设置成

   android:focusable="true"
   android:focusableInTouchMode="true"

这样,就把EditText默认的行为截断了!

原文地址:https://www.cnblogs.com/andy-songwei/p/5209997.html