本人博客地址:http://my.oschina.net/lijindou/blog
转载请标明原址:https://my.oschina.net/lijindou/blog/776132
1.listview item间距属性
// 间距高度 android:dividerHeight = "20dip" lv_fragment_main_curricula_variable.setDividerHeight(20); // 间距颜色 android:divider = "@android:color/white" lv_fragment_main_curricula_variable.setDivider(Drawable); // 取消item的点击事件 android:listSelector = "@android:color/transparent" // 去掉item之间的分割线 // 4种方法去掉: myListView.setDividerHeight(0);//设置高度为零 myListView.setDivider(null);//分割线为空 android:divider = "#ffffffff"//设置分割线颜色为透明 android:divider = "@null"//设置分割线为空
2.隐藏listview的滚动条
android:scrollbars="none" lv_fragment_main_curricula_variable.setVerticalScrollBarEnabled(false);
3.listview item 滚动到特定位置
首项
mListView.smoothScrollToPosition(0);//移动到首部
尾项
mListView.smoothScrollToPosition(listView.getCount() - 1);//移动到尾部
指定项显示在listview中
mListView.smoothScrollToPosition(int 移动的位置);
指定项显示在listview的顶部
lv_fragment_main_curricula_variable.setSelection(arg2 + 2);//参数是第几项 int 值