本次内容是为解决EditText在默认情况下获取到焦点,弹出输入法框,影响用户体验而总结的简便方法:

网上有如下的解决方案:
即在EditText前面放置一个看不到的LinearLayout,让它率先获取焦点: <LinearLayout android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px">
<EditText>
........
</LinearLayout>
我在使用的时候发现不是每次都管用,大家可以参考使用,然后下面是我使用有效的一种办法:
让EditText之前的控件先获得焦点,即在EditText前面的一个控件上设置属性:
   android:focusable="true" 
    android:focusableInTouchMode="true"
注意:一定要是之前的一个控件,之后的会没有效果