EditText在片段事务处理后单击时消失

问题描述 投票:-1回答:2

我的EditText可以正常工作,直到您打开另一个片段并返回到第一个片段。单击EditText后,键盘会弹出,并且看起来好像软键盘正在将片段的内容向上推并在背景图像后面。

这看起来像这样:

before

然后打开一个片段并再次将其关闭:

after

我的搜索文本视图:

<EditText
                android:id="@+id/search_view"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:layout_marginStart="30dp"
                android:layout_marginEnd="30dp"
                android:background="@drawable/textfield"
                android:digits="@string/digits"
                android:drawableStart="@drawable/ic_search"
                android:drawablePadding="10dp"
                android:fontFamily="@font/opensans_normal"
                android:hint="@string/search"
                android:inputType="text"
                android:paddingStart="10dp"
                android:paddingEnd="10dp"
                android:singleLine="true"
                android:textColor="@color/colorFont"
                android:textColorHint="@color/colorFont"
                android:textSize="15sp" />

此方法被调用时,会发生错误:

  fun addFilter() {
    val topicList = mutableListOf<Topic?>()
    topicAdapter = TopicAdapter(topicList, context, null, true)

    if (CachedData.filter.isNotEmpty()) {

        if (CachedData.filter[0] != null) {
            filterList.visibility = View.VISIBLE
            topicList.add(Topic(CachedData.filter[0], selected = true, clickable = true))
        }

        if (CachedData.filter[1] != null) {
            filterList.visibility = View.VISIBLE
            if (CachedData.filter[0] == null) {
                topicAdapter.setSubselect(-1)
            }
            topicList.add(Topic(CachedData.filter[1], selected = true, clickable = true))
        }
    }
    filterList.adapter = topicAdapter
    filterList.layoutManager = LinearLayoutManager(context, RecyclerView.HORIZONTAL, false)
}

UPDATE

仅在第一个片段中发生更改时才会发生。例如,如果我在第一个片段中从RecylerView将数据添加到数据集中,则会发生错误。

android kotlin android-edittext
2个回答
0
投票

打开第二个片段时隐藏软键盘。使用此代码:

public void hideKeyboard(View view) {
        if (view != null) {
            view.clearFocus();
            InputMethodManager imm = (InputMethodManager) view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
        }
    }

并像这样在第一个片段的hideKeyboard()处调用onPause()方法:

@Override
    public void onPause() {
        super.onPause();
        if (yourEdittext!= null)
            hideKeyboard(yourEdittext);
    }

0
投票

问题是背景被软键盘推动了。解决方法如下:Software keyboard resizes background image on Android

© www.soinside.com 2019 - 2024. All rights reserved.