3

在我目前正在使用的聊天应用程序中,我有一个带有编辑文本的底栏,这是我的 editText 布局:

 <RelativeLayout
    android:id="@+id/bottom_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
>

  <EditText
      android:id="@+id/edt_send_message"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_alignParentTop="true"
      android:layout_centerHorizontal="true"
      android:layout_gravity="center_vertical"
      android:layout_marginStart="12dip"
      android:layout_toEndOf="@+id/img_add"
      android:layout_toStartOf="@+id/img_send_message"
      android:background="#00000000"
      android:hint="@string/send_message"
      android:inputType="textCapSentences|textMultiLine|textAutoComplete|textAutoCorrect"
      android:isScrollContainer="false"
      android:lineSpacingMultiplier="1.2"
      android:maxHeight="120dip"
      android:minHeight="45dip"
      android:paddingBottom="19dip"
      android:paddingTop="19dip"
      android:scrollbars="none"
      android:textColorHint="@color/colorPrimary"
      android:textSize="16sp">
  </EditText>

<!-- OTHER STUFF -->

</RelativeLayout>

当我开始打字时它很好,多行很好。

但是当我将焦点移到第一行时,会发生这种情况,部分编辑文本会移动到键盘下方。

在此处输入图像描述

我知道使用adjustResize可以解决问题,但我不能使用它,因为我有一个位图并且它被压缩了。所以我不能使用adjustResize

需要帮助,在此先感谢。

4

2 回答 2

0

有趣的问题,我想出的唯一一件事就是这个 hacky 解决方案。此外,我不确定这 200 毫秒对于速度较慢的设备是否足够。但也许它会帮助你。

final EditText txtEdit = (EditText) findViewById(R.id.edt_send_message);
        txtEdit.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View view)
            {
                final int sel = txtEdit.getSelectionStart();
                txtEdit.setSelection(txtEdit.getText().length());
                txtEdit.postDelayed(new Runnable() {

                    @Override
                    public void run() {
                        txtEdit.setSelection(sel);
                    }
                }, 200);
            }
        });
于 2017-02-06T19:33:22.127 回答
-1

我认为您可以在此页面答案中找到您的答案,但作为一项普通法,我会复制该解决方案,这样我的答案就不会只是一个链接。

<!-- Dummy item to prevent AutoCompleteTextView from receiving focus -->
<LinearLayout
    android:focusable="true" 
    android:focusableInTouchMode="true"
    android:layout_width="0px" 
    android:layout_height="0px"/>

<!-- :nextFocusUp and :nextFocusLeft have been set to the id of this component
to prevent the dummy from receiving focus again -->
<AutoCompleteTextView android:id="@+id/autotext"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:nextFocusUp="@id/autotext" 
    android:nextFocusLeft="@id/autotext"/>

如果不成功,请告诉我。

于 2017-02-07T06:17:48.640 回答