我正在研究可扩展的 ListView 。我在子行的 imageview 上设置了 onClickHandler,因为在这种情况下内联 clicklistners 不起作用。但是我需要 int groupPosition 和 childPosition 在我的程序中进行一些处理。这些可以从 OnChildClick() 获得。

问题是我需要 OnclickHandler 和 OnChildClick()(对于 groupPosition 和 ChildPosition)。有没有办法得到这两个值?我们可以手动调用(调用)OnChildClick 方法吗?

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

            getExpandableListView().setOnChildClickListener(new OnChildClickListener()
            {
                public boolean onChildClick(ExpandableListView parent, View v,int groupPosition, int childPosition, long id)
                {
                     // some calculations here....
                     return false;
                }
            });
  }


public void onClickHandler (View v)
 {
     switch (v.getId()) {
         case R.id.imgcall:

            //Here I need groupPosition and ChildPosition....

                 my_function();
                 break;

         case R.id.img_call_icon:

                 // some code here......
                break;
            }
     }
 }

我的 child_row.xml
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageView
        android:id="@+id/img_call_type"

        android:layout_width="40px"
        android:layout_height="40px"/>

         <TextView
         android:id="@+id/space"
         android:layout_width="10px"
         android:layout_height="wrap_content"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
             android:id="@+id/name"
             android:textSize="14px"
             android:layout_width="115px"
             android:layout_height="wrap_content"/>

        <TextView
             android:id="@+id/number"
             android:textSize="14px"
             android:layout_width="115px"
             android:layout_height="wrap_content"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
             android:id="@+id/date"
             android:textSize="14px"
             android:layout_width="115px"
             android:layout_height="wrap_content"
             />

        <TextView
             android:id="@+id/time"
             android:textSize="14px"
             android:layout_width="115px"
             android:layout_height="wrap_content"
            />

    </LinearLayout>

     <LinearLayout
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">



<!-- on this imageview i put OnClickHandler -->

            <ImageView
            android:id="@+id/img_call_icon"

        android:layout_width="40px"
        android:layout_height="40px"
        android:clickable="true"
        android:onClick="onClickHandler"/>

    </LinearLayout>

</LinearLayout>

最佳答案

您可以在您的 child Click 监听器上获得 Button Clicks。
简而言之,只需将“onClickHandler”的 switch case 语句复制粘贴到“onChildClick”。

所以,你的代码将是,

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

        getExpandableListView().setOnChildClickListener(new OnChildClickListener()
        {
            public boolean onChildClick(ExpandableListView parent, View v,int groupPosition, int childPosition, long id)
            {
                 switch (v.getId()) {
     case R.id.imgcall:

        //Here I need groupPosition and ChildPosition....

             my_function();
             break;

     case R.id.img_call_icon:

             // some code here......
            break;
        }
     }
            }
        });
  }

如果对您有帮助,请不要忘记将其标记为答案..

10-08 13:38