0

我正在尝试创建TextView元素的 ListView,并且我希望列表的每一行都包含在一个矩形中。

当列表出现时,问题就出现了,并且行(矩形)匹配它们的内容而不是它们的 parent ListView。我最终有这样的事情:

-------
.hello.
-------------
.How are you.
-------------

我想要这样的东西:

-------------
.hello      .
-------------
.How are you.
-------------

这是我的行元素 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="match_parent"
    android:orientation="horizontal" 
    android:background="@layout/popup_lonely_row">

    <TextView
        android:id="@+id/promo_row_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:text="Lorem ipsum dolorem sit amet"
        android:textColor="@color/dark_gray_options" />
</LinearLayout>

这是行矩形形状xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dp"
    android:shape="rectangle" >

    <solid android:color="#FFFFFF" />

    <stroke
        android:width="1dp"
        android:color="@color/blue_alert_stroke" />

</shape>
4

1 回答 1

0

在您的行矩形形状中,使用 layout_width 作为匹配父级或填充父级

于 2013-09-20T14:31:23.810 回答