我有一个包含很多行的列表视图,每行都是一个edittext。 触摸上一个editext时,我希望显示软键盘,而不是覆盖我上一个编辑文本。
我在互联网上搜索,发现如果将android:windowSoftInputMode="adjustPan"
放在Manifest.xml中会有所帮助,并且结果正确就像我想要的那样。但是当我输入一些单词时,软键盘的建议栏会显示并再次覆盖最后一个编辑文本。
我不想禁用建议栏,所以我想知道有没有办法显示带有建议文本栏的全键盘。
答案 0 :(得分:1)
请尝试: android:windowSoftInputMode =“adjustResize”
<activity
android:name="SimpleActivity"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 1 :(得分:0)
如何在最后一个EditText上设置底部边距?我知道这听起来很脏,但它可能有效。