我想建立一個應用程序,其中有許多項目的列表視圖,但我無法更改或設置單個項目的寬度和高度。我到處搜索,我得到的答案是使寬度FILL_PARENT,但它不是爲我工作...如何更改android中listviews項的寬度和高度?
請幫助....在此先感謝...這裏是代碼:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="3dp"
tools:context=".CustomListViewAndroidExample" >
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"/>
</RelativeLayout>
其中是您的列表適配器視圖(你想添加到你的列表視圖)?發佈xml代碼和您的適配器類 – k0sh
使用自定義視圖。 – Aniruddha