我正在尝试创建TextView
元素的ListView,我希望列表的每一行都包含在矩形中。
当列表显示时,问题就出现了,行(矩形)与其内容匹配,而不是与父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>
答案 0 :(得分:0)
在您的行矩形形状中,使用layout_width作为匹配父级或填充父级