android:focusableInTouchMode="true" android:focusable="true" android:descendantFocusability="beforeDescendants"
这几个属性输入上去就可以避免默认在edittext上获取焦点了
还有可能是进入页面settext之后还是默认获取了焦点,那么settext之后
view.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS); view.setFocusable(true); view.setFocusableInTouchMode(true);
继续在srcollview上主动获取
beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点