Android布局 - 具有相似属性的两个相对布局,但第二个布局具有相同的属性

时间:2011-05-11 15:34:58

标签: java android xml layout

这让我感到难过,我似乎无法弄明白。

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

<?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>

现在,在布局视图中,一切看起来都很完美。但这是我设备上的样子截图:

![在此处输入图片说明] [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("");
            }

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

尝试从右侧layout_alignParentTop删除TextView。如果不是这样,那么你的背景是否可以获得9个补丁?你确定你的9补丁被正确拉伸了吗?