Button、ImageButton、和EditText等控件会主动抢夺焦点

一、分析

在Android开发中,Button、ImageButton、和EditText等控件会主动抢夺焦点。原因是在需要键盘的App需要点击按键移动焦点到下一个可操作的点,一般的方法可以nextFocusXXX中配置。


、解决

1、将Button替换成TextView或者ImageView这些非主动抢夺焦点的控件。(TextView也可以通过设置background实现按钮的效果,仅适用非键盘的App)

2、将Button设置成  setFocusable(false)  ,且将根布局的添加属性  android:descendantFocusability="blocksDescendants" 。

三、说明

android:descendantFocusability API描述如下: 
Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus. Must be one of the following constant values. 
该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。 
 
属性的值有三种:  
        beforeDescendants:viewgroup会优先其子类控件而获取到焦点 
        afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点 
        blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点 

你可能感兴趣的:(Button、ImageButton、和EditText等控件会主动抢夺焦点)