gpt4 book ai didi

android - Edittext在BottomSheetDialogFragment中被挤压

转载 作者:行者123 更新时间:2023-12-03 10:12:20 25 4
gpt4 key购买 nike

我有一个 BottomSheetDialogFragment ,其中有简单的布局文件
当用户使用以下内容时,edittext在底部,recyclerview在顶部
点击edittext并打开软键盘,并在其中写几行
edittext并尝试滚动它,如果在滚动过程中我点击任意一行
edittext会挤压自身,还会挤压 BottomSheetDialogFragment 抽搐
就像是在渲染自己。

这是我的代码

layout_file:

<RelativeLayout
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background"
android:orientation="vertical"
app:behavior_hideable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/etPostShare">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvNewMessage"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</android.support.v4.widget.SwipeRefreshLayout>
<EditText
android:id="@+id/etPostShare"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="1dp"
android:background="@null"
android:gravity="center|left"
android:hint="Aa"
android:inputType="textCapSentences|textMultiLine"
android:isScrollContainer="true"
android:maxHeight="60dp"
android:maxLength="@integer/send_chat_txt_limit"
android:maxLines="4"
android:paddingLeft="18.4dp"
android:paddingBottom="10dp"
android:textSize="14.6sp" />

</RelativeLayout>

在这里,我附上了我的问题的图片和视频链接:

enter image description here

https://drive.google.com/file/d/1bADuzDQoWep8XPMQ4ypKCWJyD32Gtfwp/view?usp=sharing

最佳答案

这可以在预览中使用

 <RelativeLayout
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_red_light"
android:orientation="vertical"
app:behavior_hideable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/rvNewMessage"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</android.support.v4.widget.SwipeRefreshLayout>

<EditText
android:id="@+id/etPostShare"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="1dp"
android:background="@null"
android:gravity="center|left"
android:layout_alignParentBottom="true"
android:hint="Aa\naa"
android:inputType="textCapSentences|textMultiLine"
android:isScrollContainer="true"
android:maxHeight="60dp"
android:maxLength="500"
android:maxLines="4"
android:paddingLeft="18.4dp"
android:paddingBottom="10dp"
android:textSize="14.6sp" />

</RelativeLayout>

关于android - Edittext在BottomSheetDialogFragment中被挤压,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55809638/

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