所以真的很快我有一個自定義適配器的ListView,它膨脹包含horizontalScrollView以及textview等的視圖。我遇到的問題是,當我嘗試附加一個偵聽器到這個列表查看它沒有收到任何回調。ListView與horizontalScrollView OnItemClick不工作
我認爲這個問題與我的列表項目包含一個滾動視圖截取點擊事件(儘管我認爲它應該只攔截其他手勢)有關。
代碼...(我的列表項XML)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearMain"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/grey" >
<TextView
android:id="@+id/headerName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:padding="4dp"
android:textColor="@color/text_header"
android:textStyle="bold"
android:text="TextView" />
</RelativeLayout>
<View
android:background="@color/border"
android:layout_width="fill_parent"
android:layout_height="1px" />
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="fill_parent"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/linearImages"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="4dp">
</LinearLayout>
</HorizontalScrollView>
<View
android:background="@color/border"
android:layout_width="fill_parent"
android:layout_height="1px" />
</LinearLayout>
,然後在我的onCreate ...
lv.setAdapter(myobj.adapter);
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener(){
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
Log.w("dsdsds", "sdsdsds");
}});
任何幫助或建議,將不勝感激
任何意見將是巨大的 – Maurycy 2012-01-29 08:09:44
所以沒有一個答案實際上解決這個問題,我沒有訪問代碼基地了。如果有人遇到這個問題,並有一個已知的修復,我會接受 – Maurycy 2013-11-11 20:43:35