gpt4 book ai didi

java - Android布局——两个属性相似的相对布局,但第二个连续更大

转载 作者:行者123 更新时间:2023-11-30 11:53:58 25 4
gpt4 key购买 nike

这让我有点难过,我似乎无法弄明白。

我正在自定义适配器中创建一个具有并排相对布局的聊天界面。

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">

<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_weight="1" android:layout_height="wrap_content">
<RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="wrap_content" android:layout_weight="1" android:layout_height="wrap_content">
<TextView android:id="@+id/lefttext" android:text="TextView" android:layout_width="fill_parent" android:gravity="top" android:layout_height="wrap_content" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="5dip" android:layout_alignParentLeft="true"></TextView>
</RelativeLayout>
<RelativeLayout android:id="@+id/relativeLayout2" android:layout_width="wrap_content" android:layout_weight="1" android:layout_height="wrap_content">
<TextView android:id="@+id/righttext" android:layout_width="fill_parent" android:text="TextView" android:layout_height="wrap_content" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="5dip" android:layout_alignParentLeft="true" android:layout_alignParentTop="true"></TextView>
</RelativeLayout>
</LinearLayout>

现在,在布局 View 中,一切看起来都非常完美。但这是它在我的设备上的截图:

![在此处输入图片描述][1]

左边的布局按照我想要的方式调整高度,但右边的布局上面有很大的空间。这是我设置单元格背景和资源的方式

            if (wasMine == 0) 
{
lt.setText(Message);
leftLayout.setBackgroundResource(R.drawable.speechbubblefrom);
rightLayout.setBackgroundDrawable(null);
rt.setText("");

}
else if (wasMine == 1)
{
rt.setText(Message);
rightLayout.setBackgroundResource(R.drawable.speechbubbleto);
leftLayout.setBackgroundDrawable(null);
lt.setText("");
}

有什么想法吗?

最佳答案

尝试从右边的 TextView 中移除 layout_alignParentTop。如果不是,那么您的背景可绘制对象是 9 补丁吗?您是否确保您的 9 补丁已正确拉伸(stretch)?

关于java - Android布局——两个属性相似的相对布局,但第二个连续更大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5966849/

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