Android开发中遇到的EditText在ListView中的键盘焦点问题,网上解决方法很多,但是都比较麻烦,其实最简单的解决方案就是:
用RecyclerView,参见:bigsinger/EditTextInRecyclerView,注意控件不要用这个属性:
android:descendantFocusability="blocksDescendants"
其他,有说要在RecyclerView控件中添加:
android:descendantFocusability="beforeDescendants"
android:fastScrollEnabled="false"
所在activity的AndroidManifest.xml属性添加:
android:windowSoftInputMode="stateHidden|adjustPan"
貌似不加也可以。
文档信息
- 本文作者:zhupite
- 本文链接:https://zhupite.com/android/edittext-focus-problem-in-listview.html
- 版权声明:自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)