android - 如何为可扩展列表的 child 实现不同的点击事件?

标签 android click expandablelistview

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

这是我的可扩展列表代码。请检查一下。我也试过 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" );
    }

}

}

请帮帮我。

最佳答案

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

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

看看是否有帮助。

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

关于android - 如何为可扩展列表的 child 实现不同的点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5026066/

相关文章:

javascript - 在 iframe 中跟踪点击

ios - 寻找可扩展的 TableView 来转换我的 JSON 树结构

java - 为每个响应改造解串器

android - 更改升级后的 Android 应用程序包名称

javascript - PhantomJS 无法点击现有元素

android - 在 Fragment 中使用 PullToRefreshExpandableListView

ExpandableListView 的 child 的android 奇怪的背景

java - 如何使用地址打开谷歌地图?

android - 更新安卓时区数据

android - 为什么我的按钮在第一次点击时不起作用?