ListView的使用
ListView样式设置
取消Item点击变色效果
- android:listSelector=”@android:color/transparent”
Item条目高度的设定
- android:minHeight=”150dp”
取消背景
- android:background=”@null”
删除Item之间的分割线
3种方法去掉:
- myListView.setDividerHeight(0);
- myListView.setDivider(null);
- 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);
}