在ScrollView外面的父布局添加3个属性
android:focusable="true" android:focusableInTouchMode="true" android:descendantFocusability="beforeDescendants"就可以解决问题。
本文介绍了解决ScrollView在触摸模式下无法正确获取焦点的问题方案。通过为ScrollView外部的父布局添加三个关键属性:android:focusable=true、android:focusableInTouchMode=true和android:descendantFocusability=beforeDescendants,可以有效解决这一问题。
在ScrollView外面的父布局添加3个属性
android:focusable="true" android:focusableInTouchMode="true" android:descendantFocusability="beforeDescendants"就可以解决问题。

被折叠的 条评论
为什么被折叠?
