1.XExpandableListView 继承自ExpandableListView 实现分页功能
2.点击父项没触发事件,一般与焦点是 否获得有关,页面不要有 android:focusable="true"
android:focusableInTouchMode="true"
3.点击子项没触发事件:除了要设置isChildSelectable()方法返回true, 还要看getChildView()方法的布局里面所使用的控件,listview一般不行,imagebutton也不行,button,imageview要加上android:focuable="false"