【问题标题】:How to implement different click events for child of expandable list?如何为展开式列表的子级实现不同的点击事件?
【发布时间】:2011-06-28 21:42:24
【问题描述】:

在我的可展开列表视图中,我有一个textView 和一个imagebutton。当我单击textView 或可扩展列表的子视图时,它应该显示alertbox。我可以通过使用onChildClick 来实现这一点,但我在textView 之后的子视图中有一个imagebutton。当我单击它时,它应该执行另一个活动。我不知道如何在可扩展列表中实现这一点。

这是我的可扩展列表代码。请检查一下。我也试过android:onClick="myClickHandler"。我收到了一些illegalstateException

这是我的代码:

import android.app.ExpandableListActivity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ExpandableListView;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.SimpleExpandableListAdapter;
import android.widget.TextView;
import android.widget.Toast;
import java.util.List;
import java.util.ArrayList;
import java.util.HashMap;
import android.util.Log;

public class CoctailsActivity extends ExpandableListActivity implements OnClickListener
{
    private static final String LOG_TAG = "ElistCBox";
    public static ImageButton img_button;

    static final String Group[] = {
      "A",
      "B",
      "C",
      "D"
    };

    static final String Children[][] = {
      {
        "lightgrey",
        "dimgray",
        "sgi gray 92"
      },
      {
        "dodgerblue 2",
        "steelblue 2",
        "powderblue",
      },
      {
        "yellow 1",
        "gold 1",
        "darkgoldenrod 1",
      },
      {
        "indianred 1",
        "firebrick 1",
        "maroon",
      }
    };

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle)
    {
        super.onCreate(icicle);
        setContentView(R.layout.exp_list);

        SimpleExpandableListAdapter expListAdapter =new SimpleExpandableListAdapter
            (
                this,
                createGroupList(),  
                R.layout.group_row, 
                new String[] { "Group" },   
                new int[] { R.id.group_name },      
                createChildList(),  
                R.layout.child_row, 
                new String[] { "Children"}, 
                new int[] { R.id.child_name }   
            );
        setListAdapter( expListAdapter );


    }

    public void  onContentChanged  () 
    {
        super.onContentChanged();
        Log.d( LOG_TAG, "onContentChanged" );
    }
    public void myClickHandler(View v) 
    {
        Log.v( LOG_TAG, "insideMyHandler" );



        ExpandableListView lvItems = getExpandableListView();
        for (int i=0; i < lvItems.getChildCount(); i++) 
        {
            lvItems.getChildAt(i).setBackgroundColor(Color.BLUE);        
        }



        LinearLayout vwParentRow = (LinearLayout)v.getParent();

        TextView child = (TextView)vwParentRow.getChildAt(0);
        Button btnChild = (Button)vwParentRow.getChildAt(1);
        btnChild.setText(child.getText());
        btnChild.setText("I've been clicked!");

        int c = Color.CYAN;

        vwParentRow.setBackgroundColor(c); 
        vwParentRow.refreshDrawableState();       
    }


   public boolean onChildClick(ExpandableListView parent,View v,int groupPosition,int childPosition,long id) 
   {
        Log.d( LOG_TAG, "onChildClick: "+childPosition );

        return false;
    }

    public void  onGroupExpand  (int groupPosition) {
        Log.d( LOG_TAG,"onGroupExpand: "+groupPosition );
    }

    private List<HashMap<String, String>> createGroupList() {
      ArrayList<HashMap<String, String>> result = new ArrayList<HashMap<String, String>>();
      for( int i = 0 ; i < Group.length ; ++i ) {
        HashMap<String, String> m = new HashMap<String, String>();
        m.put( "Group",Group[i] );
        result.add( m );
      }
      return (List<HashMap<String, String>>)result;
    }

  private List<ArrayList<HashMap<String, String>>> createChildList() {
    ArrayList<ArrayList<HashMap<String, String>>> result = new ArrayList<ArrayList<HashMap<String, String>>>();
    for( int i = 0 ; i < Children.length ; ++i ) 
    {
// Second-level lists
      ArrayList<HashMap<String, String>> secList = new ArrayList<HashMap<String, String>>();
      for( int n = 0 ; n < Children[i].length ; n += 2 ) 
      {
        HashMap<String, String> child = new HashMap<String, String>();
        child.put( "Children", Children[i][n] );
        //child.put( "rgb", shades[i][n+1] );
        secList.add( child );
      }
      result.add( secList );
    }
    return result;
  }

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub
    img_button =(ImageButton)v.findViewById(R.id.img01);
    if(img_button!=null){
        Log.v( LOG_TAG, "onclick clickedddddd" );
    }

}

}

请帮帮我。

【问题讨论】:

    标签: android click expandablelistview


    【解决方案1】:

    我自己没有尝试过,但我认为按钮的点击事件可以由活动处理,就像你处理任何其他按钮的点击事件一样。

    可以阅读这篇文章:http://developer.android.com/guide/topics/ui/ui-events.html

    看看是否有帮助。

    否则,我相信您可以构建一个 onClick 侦听器对象并通过特定按钮传递它。该链接应该可以帮助您。

    【讨论】:

    • 感谢您的回复。我尝试了所有这些事情。在我的代码中,我使用 onChildClick 事件,当我点击 imagebutton onchildclick 事件时,只会调用 ..为什么会这样。
    • 没有源代码就很难说清楚。如果可能,请发布您的活动源代码。就像我说的,我自己还没有尝试过,但是我想通过执行以下 Button button = (Button)findViewById(R.id.yourimgbutton); 可以拦截所有按钮点击button.setOnClickListener(this);然后在活动方法OnClick中处理它我认为只有当用户单击整行并在自定义适配器中触发事件时才会触发onChildClick事件,而不是活动的onClickEvent。希望对您有所帮助。
    • 这是我的可扩展列表代码 .. 请检查一下,我也试过 android:onClick="myClickHandler" dat ...得到一些非法状态异常是我的代码
    【解决方案2】:

    Kris,为什么不实现 ExpandableListAdapter 。它们位于 API 演示示例 -ExpandableList1.java 中,然后覆盖 getGroupViewgetChildView 以根据需要设置 onClickListeners

    【讨论】:

      猜你喜欢
      • 2011-03-25
      • 1970-01-01
      • 1970-01-01
      • 2019-09-16
      • 1970-01-01
      • 1970-01-01
      • 2012-06-16
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多