i have my problem with my Expandable ListView on my Android Application
this my code
package proyek.akhir;
import android.app.ListActivity;
import an
You have to change return value is true instead of false. Make your child view selectable.
Use this:
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
Instead Of:
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return false;
}