ListView的使用

ListView样式设置

取消Item点击变色效果

  • android:listSelector=”@android:color/transparent”

Item条目高度的设定

  • android:minHeight=”150dp”

取消背景

  • android:background=”@null”

删除Item之间的分割线

3种方法去掉:

  1. myListView.setDividerHeight(0);
  2. myListView.setDivider(null);
  3. XML布局文件中设置ListView的属性android:divider=”#FFCC00”或者android:divider=”@null”

重写控件高度

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
    }

TODO 复用

posted on 2015-07-20 16:25  封起De日子  阅读(137)  评论(0编辑  收藏  举报

导航