我使用自定義視圖(image + frameLayout)創建列表視圖,但問題是當我點擊列表視圖上的任何項目時,getView方法被稱爲等於ilst視圖中的項目數,ListView中的CustomView
我在這裏給我的xmi文件。
custon_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="5dp">
<ImageView
android:id="@+id/imageView1"
android:layout_width="70dp"
android:layout_height="70dp"
android:src="@drawable/ic_launcher"
/>
<FrameLayout
android:id="@+id/frame"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Landed"
android:layout_gravity="center"
/>
<LinearLayout
android:id="@+id/ll1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="vertical" >
<TextView
android:id="@+id/from_user"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="hi"
android:textColor="#000000" />
<TextView
android:id="@+id/from_user_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="hi"
android:textColor="#000000" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
請幫助我,提前感謝。
我想你想如果你的視圖有2個文本和一個圖像,那麼只有文本有不同的點擊事件和圖像有不同的點擊事件。是嗎 ? –
不要使用框架佈局,只能使用線性佈局來處理此問題。代碼檢查此:http://stackoverflow.com/a/12813906/1168654 –
您的問題是爲什麼getView方法被重複調用。我對嗎? –