我正在使用列表视图并希望向其添加行,我知道如何使用数组适配器添加简单行但这次我想添加具有不同布局文件的自定义行。
我怎么能实现它?
这是我要添加的3个XML文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/creditBestValuePurchase"
android:layout_width="85dp"
android:layout_alignParentRight="true"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:background="@drawable/btn_save_normal"
android:gravity="center_vertical|center_horizontal"
android:text="$ 14.99" />
<TextView
android:id="@+id/creditBestValueNoOfCredits"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/creditBestValuePurchase"
android:layout_alignBottom="@+id/creditBestValuePurchase"
android:layout_alignParentLeft="true"
android:layout_marginRight="15dp"
android:layout_marginLeft="16dp"
android:text="5000 credits" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/creditBestValueNoOfCredits"
android:layout_alignBottom="@+id/creditBestValueNoOfCredits"
android:layout_centerHorizontal="true"
android:background="@drawable/yellow"
android:gravity="center_vertical|center_horizontal"
android:text="BEST VALUE" />
</RelativeLayout>
同样我有2个其他布局
那么如何将这些添加到列表视图?
帮助将不胜感激。
答案 0 :(得分:0)
这是一个很好的例子: https://stackoverflow.com/a/23125744/3784501
您需要使用getItemViewType,getViewTypeCount方法
的自定义适配器