EditText in Listview loses focus when pressed on Android 4.x

后端 未结 9 1178
孤城傲影
孤城傲影 2020-11-29 03:13

I know there are a lot of similar questions out here but I couldn\'t get any of the provided solutions working in a simple sample app.

The problem occurs when the

9条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-29 03:49

    I was having problems with the ActionBar "stealing" focus when I pressed on an EditText located within a ListView row. The above solutions did not work, but the following solution worked for me:

    http://www.mysamplecode.com/2013/02/android-edittext-listview-loses-focus.html

    Basically I added this to my ListView:

    android:descendantFocusability="beforeDescendants"
    

    and added this to my activity:

    android:windowSoftInputMode="adjustPan"
    

提交回复
热议问题