在ListView中添加EditText丢失光标问题解决

<ListView
    android:id="@android:id/list" 
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent"
    android:descendantFocusability="beforeDescendants"
    />

Change to activity in mainfest.xml:

<activity android:name= ".yourActivity" android:windowSoftInputMode="adjustPan"/>

已经验证,可以解决了。
原文地址:https://www.cnblogs.com/zmc/p/6515129.html