Android: EditText in ListView issue

前端 未结 5 1067
梦如初夏
梦如初夏 2020-12-30 11:07

I have a listview in my application that is basically a questionaire so there are some EditTexts that the user needs to fill. I\'ve encountered the following issues:

5条回答
  •  Happy的楠姐
    2020-12-30 11:40

    Solutions to issue #3:

    1. Set descendantFocusablity="beforeDescendants" in the listview.

    2. Set windowSoftInputMode="adjustPan" in the manifest

    3. Set listview.setItemsCanFocus(true)

提交回复
热议问题