android scrollview中嵌套expandablelistview

  • Post author:
  • Post category:其他


http://blog.csdn.net/swust_chenpeng/article/details/17413955

一、重新expandablelistview


  1. public


    class

    CustomExpandableListView

    extends

    ExpandableListView {

  2. public

    CustomExpandableListView(Context context, AttributeSet attrs) {

  3. super

    (context, attrs);

  4. // TODO Auto-generated constructor stub
  5. }

  6. @Override

  7. protected


    void

    onMeasure(

    int

    widthMeasureSpec,

    int

    heightMeasureSpec) {

  8. // TODO Auto-generated method stub

  9. int

    expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >>

    2

    ,
  10. MeasureSpec.AT_MOST);

  11. super

    .onMeasure(widthMeasureSpec, expandSpec);
  12. }
  13. }

二、动态计算expandablelistview的高度,xxx_group.xml和xxx_child.xml的最外层要用linearlayout,反正relativelayout不行,不知道为什么


  1. private


    void

    setListViewHeight(ExpandableListView listView) {
  2. ListAdapter listAdapter = listView.getAdapter();

  3. int

    totalHeight =

    0

    ;

  4. int

    count = listAdapter.getCount();

  5. for

    (

    int

    i =

    0

    ; i < listAdapter.getCount(); i++) {
  6. View listItem = listAdapter.getView(i,

    null

    , listView);
  7. listItem.measure(

    0

    ,

    0

    );
  8. totalHeight += listItem.getMeasuredHeight();
  9. }
  10. ViewGroup.LayoutParams params = listView.getLayoutParams();
  11. params.height = totalHeight
  12. + (listView.getDividerHeight() * (listAdapter.getCount() –

    1

    ));
  13. listView.setLayoutParams(params);
  14. listView.requestLayout();
  15. }

三、scrollveiew中嵌套的listview的话,前两种都行,还有一种如下


  1. public


    class

    ViewGroupForListView

    extends

    LinearLayout

    implements

    View.OnClickListener {

  2. private

    ListAdapter mAdapter =

    null

    ;

  3. private

    OnItemClickListener mListener =

    null

    ;

  4. public

    ViewGroupForListView(Context context) {

  5. super

    (context);
  6. }

  7. public

    ViewGroupForListView(Context context, AttributeSet attrs) {

  8. super

    (context, attrs);

  9. // TODO Auto-generated constructor stub

  10. this

    .setOrientation(VERTICAL);
  11. }

  12. /**

  13. * 绑定数据

  14. */

  15. protected


    void

    bindData() {

  16. int

    count = mAdapter.getCount();

  17. for

    (

    int

    i =

    0

    ; i < count; i++) {
  18. View v = mAdapter.getView(i,

    null

    ,

    null

    );
  19. v.setLayoutParams(

    new

    LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
  20. v.setOnClickListener(

    this

    );
  21. v.setId(i);
  22. addView(v, i);
  23. }
  24. }

  25. /**

  26. * 设置adapter

  27. * @param adapter

  28. */

  29. public


    void

    setAdapter(ListAdapter adapter) {
  30. mAdapter = adapter;

  31. if

    (

    this

    .getChildCount() !=

    0

    ) {
  32. removeAllViews();
  33. }
  34. bindData();
  35. }

  36. /**

  37. * 获取adapter

  38. * @return

  39. */

  40. public

    ListAdapter getAdapter() {

  41. return

    mAdapter;
  42. }

  43. /**

  44. * 绑定监听

  45. * @param listener

  46. */

  47. public


    void

    setOnItemClickListener(OnItemClickListener listener) {

  48. this

    .mListener = listener;
  49. }

  50. @Override

  51. public


    void

    onClick(View v) {

  52. // TODO Auto-generated method stub

  53. if

    (mListener !=

    null

    ) {
  54. mListener.onItemClick(v.getId(), mAdapter);
  55. }
  56. }

  57. /**

  58. * 监听接口

  59. * @author Visual

  60. *

  61. */

  62. public


    interface

    OnItemClickListener {

  63. public


    void

    onItemClick(

    int

    position, ListAdapter adapter);
  64. }

adapter的实现类似普通listview的adapter用法