gpt4 book ai didi

android - 相对布局放置到其他相对布局

转载 作者:行者123 更新时间:2023-11-29 14:48:37 24 4
gpt4 key购买 nike

我正在开发一个聊天应用程序。我想将编辑文本放在底部,然后将消息放在上面。但是我有一个问题:

enter image description here

我不想将消息放在编辑文本和按钮的顶部。我该如何防止这种情况发生?这是我的 xml:

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

<ListView
android:id="@+id/message_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"/>

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >


<EditText
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

<Button
android:id="@+id/get_from_user"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:text="Gönder" />
</RelativeLayout>

</RelativeLayout>

我还有一个问题。如何像其他聊天应用一样做消息列表系统?我的意思是当我发送一条消息时,这条消息位于列表的底部而不是顶部。现在在我的 xml 中它被放置在顶部。像这样:

enter image description here

最佳答案

将您的 ListView 设置在 EditText 布局之上。您的布局将如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ECECFB">

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


<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<Button
android:id="@+id/get_from_user"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:text="Gönder" />
</RelativeLayout>

<ListView
android:id="@+id/message_list"
android:layout_above="@id/bottom_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</RelativeLayout>

对于你的第二个问题,设置

android:stackFromBottom="true"
android:transcriptMode="normal"

ListView

关于android - 相对布局放置到其他相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26158566/

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