0

我的 Android 应用中有一个ListViewListView应该是项目目录。现在,它看起来不太像目录,因为它显示为行列表。

有没有办法创建某种具有 3 个垂直行和与目录中项目数一样多的水平行的表格视图,并且仍然使用我在 中使用的相同数据ListView?另外,如何将单元格布局更改为矩形单元格?

单元布局.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/itemNameList"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/itemPriceList"
    android:layout_below="@+id/itemNameList"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"/>

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/itemImageList"
    android:layout_alignParentTop="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

4

1 回答 1

0

我用一种非常简单的方法解决了它:我刚刚更改了ListViewto的类型GridView并修复了单元格布局,因此它将垂直显示而不是水平显示。

于 2017-01-09T16:37:37.000 回答