0

我正在尝试设置自定义列表视图布局。我膨胀的布局是这样的:

测试.xml:

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

    <TextView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="hello"
        />
    <TextView 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="hello 2"
        />

</LinearLayout>

这看起来很正常:
在此处输入图像描述

但是当我将线性布局的方向更改为水平时,它会变得一团糟,看起来像这样:有没有办法解决这个问题或者我在这里做错了什么?
在此处输入图像描述

有什么办法可以解决这个问题,或者我在这里做错了什么?

4

1 回答 1

1

将两个 TextView 的宽度设为“wrap_content”

因为您已将方向设置为水平,并且第一个 textview 的宽度为 match_parent,因此第一个 textview 占用了所有宽度,而第二个 textview 不能紧随其后。

于 2013-07-06T21:29:11.570 回答