2012-01-28 63 views
6

所以真的很快我有一個自定義適配器的ListView,它膨脹包含horizo​​ntalScrollView以及textview等的視圖。我遇到的問題是,當我嘗試附加一個偵聽器到這個列表查看它沒有收到任何回調。ListView與horizo​​ntalScrollView 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"); 
     }}); 

任何幫助或建議,將不勝感激

+0

任何意見將是巨大的 – Maurycy 2012-01-29 08:09:44

+0

所以沒有一個答案實際上解決這個問題,我沒有訪問代碼基地了。如果有人遇到這個問題,並有一個已知的修復,我會接受 – Maurycy 2013-11-11 20:43:35

回答

1

你可以在適配器的getView()方法中爲linearMain調用setOnClickListener。

1

了滾動你應該使用OnTouchListener,如:

private class ScrollViewOnTouchListener implements OnTouchListener{ 
     HorizontalScrollView view; 
     float historicX = Float.NaN; 
     static final int DELTA_ON_CLICK = 20; 
     long historicTime; 
     int position; 
     public ScrollViewOnTouchListener(HorizontalScrollView view, int position){ 
      this.view = view; 
      this.position = position; 
     } 

     @Override 
     public boolean onTouch(View v, MotionEvent event) 
     { 
      switch (event.getAction()) 
      { 
       case MotionEvent.ACTION_DOWN: 
       historicX = event.getX(); 
       historicTime = System.currentTimeMillis(); 
       break; 

       case MotionEvent.ACTION_UP: 

       if (Math.abs(event.getX() - historicX) < DELTA_ON_CLICK) 
        // seems like onclick 
        // do what you want for onClick 

       break; 
       default: return false; 
      } 
      return true; 
     } 


    } 

和適配器的getView方法:

public View getView(int position, View convertView, ViewGroup parent) { 
    ... 
    HorizontalScrollView scrollItem; 
    scrollItem =( HorizontalScrollView)itemView.findViewById(R.id.item_scroll_view); 
    scrollItem .setOnTouchListener(new ScrollViewOnTouchListener(scrollItem , position));  
} 
2

一下添加到最上面的佈局:

android:descendantFocusability="blocksDescendants"

它爲我做了訣竅,現在onItemClickListener被解僱了。

+0

謝謝它對我有用.. – 2015-07-09 10:22:58

+0

在哪裏把這個 - 在根目錄佈局的項目? – NarendraJi 2015-09-26 06:55:35

+0

@DroidWormNarendra是在項目佈局中 – 2015-09-26 14:19:59

0

內list_item.xml標記與一些標識佈局:

<?xml version="1.0" encoding="utf-8"?> 
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
         xmlns:tools="http://schemas.android.com/tools" 
         android:layout_width="match_parent" 
         android:layout_height="match_parent" 
         android:fillViewport="true"> 

    <LinearLayout 
     android:id="@+id/layout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal"> 

... 

打開您的自定義適配器,在getView(...)寫:

layout = view.findViewById(R.id.layout); 
layout.setTag(position); 
layout.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      if (callback != null) { 
       callback.showItem(getItem((int) v.getTag())); 
      } 
     } 
    }); 

下面的適配器寫:

public interface OnClickInterface { 
    void showItem(YourClass item); 
} 

並在適配器的構造函數中分配回調函數:

public CustomAdapter(Context context, List<YourClass> list, OnClickInterface callback, int resId) { 
    this.callback = callback; 
    ... 

在你的活動/片段包含一個ListView創建了以下這樣一個適配器:

CustomAdapter.OnClickInterface callback = new CustomAdapter.OnClickInterface() { 
     @Override 
     public void showItem(YourClass item) { 
      // Do something with an item. 
     } 
} 
adapter = new Customdapter(getActivity(), new ArrayList<YourClass>(), callback, R.layout.list_item); 
相關問題