gpt4 book ai didi

android - 键盘出现时EditText失去焦点;需要触摸两次才能编辑

转载 作者:IT老高 更新时间:2023-10-28 21:58:18 28 4
gpt4 key购买 nike

我一直在设计一个包含可扩展列表的应用程序。在每个列表的末尾,一个空的 EditText 已准备好接收评论。我有以下问题;当我触摸 EditText 时,屏幕会稍微调整大小(不是问题,因为调整大小并不总是发生,这取决于我的布局和列表中 EditText 的位置)软键盘出现。但是,在这些事件期间,EditText 失去焦点并且不会重新获得它。这很不方便,因为没有焦点,尽管键盘可用,但来自键盘的输入不会到达 EditText。一旦我再次触摸它,EditText 就会按预期运行。

它变得更加陌生。在键盘仍然显示的情况下,我可以触摸不同的 EditText 并且会发生同样的情况;它失去焦点。但是,一旦我通过了最初的失去焦点,我就可以在以前接触过的 EditText 之间自由移动,而不会出现任何与焦点相关的问题。只有当我隐藏软键盘时,“状态”才会消失,我需要点击 EditText 两次才能编辑它们。

以下是我的代码的摘录。一、empty_comment.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<EditText
android:id="@+id/blank_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textCapSentences"
android:imeOptions="actionDone"
android:hint="@string/hint"
android:layout_marginLeft="30dip" >
</EditText>
</LinearLayout>

这里是我使用相关布局的 fragment 的摘录:

convertView = LayoutInflater.from(parent.getContext()).inflate(R.layout.comment_empty, null);
final EditText editText = (EditText) convertView.findViewById(R.id.blank_box);
editText.setOnEditorActionListener(new OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event)
{
if(actionId == EditorInfo.IME_ACTION_DONE)
{
// Unrelated code
}
return true;
}
});

我没有在我的 list 文件中指定任何特定的输入,但如果认为有帮助,我可以提供它。

更新:

Activity 中添加一行来调整平移 android:windowSoftInputMode="adjustPan" 确实可以部分解决问题。它将当前的意外行为替换为 EditText View 可能被软键盘隐藏的问题。

到目前为止,还没有找到理想的解决方案,但已经接近。查看已接受答案中的评论,它们可能对您有用!

最佳答案

一个解决方案是发布一个延迟的可运行文件,检查 EditText View 是否仍然聚焦,如果不是,聚焦它。

editText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(final View v, boolean hasFocus) {
if (hasFocus) {
// Request focus in a short time because the
// keyboard may steal it away.
v.postDelayed(new Runnable() {
@Override
public void run() {
if (!v.hasFocus()) {
v.requestFocus();
}
}
}, 200);
}
}
});

关于android - 键盘出现时EditText失去焦点;需要触摸两次才能编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14727248/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com