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 复用

你可能感兴趣的:(android,ListView,样式,设置,效果)