Android: EditText focus jumps to another inside ScrollView

后端 未结 3 1584
时光取名叫无心
时光取名叫无心 2020-12-20 08:50

I have multiple fragments horizontally adjacent using a ViewPager. Each fragment has a ScrollView that contains a table with many EditText views. When I click on a EditTex

3条回答
  •  醉梦人生
    2020-12-20 09:27

    I found the problem, it was the lines in the main activity XML: activity_slide_view_pager.xml

        android:focusableInTouchMode="true"
        android:descendantFocusability="beforeDescendants"
    

    This was causing the RelativeLayout to grab focus.

提交回复
热议问题