大家好,
我想删除可扩展列表视图中显示的滚动条,我的xml代码如下:
<ExpandableListView
android:id="@+id/expandablelistview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="#00000000"
android:drawSelectorOnTop="false"
android:fadingEdge="none"
android:fastScrollAlwaysVisible="false"
android:fastScrollEnabled="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:groupIndicator="@null"
android:overScrollMode="never"
android:scrollbarAlwaysDrawVerticalTrack="false"
android:scrollbars="none"
android:scrollingCache="false"
android:fadeScrollbars="true"
android:smoothScrollbar="false" >
</ExpandableListView>
但是当我滚动列表时仍会显示,有人可以帮忙吗?
答案 0 :(得分:0)
机器人:fadeScrollbars =&#34;真&#34;设置为false。
答案 1 :(得分:0)
传递列表视图并禁用列表视图。
enableDisableView(listView,false);
public void enableDisableView(View view, boolean enabled) {
view.setEnabled(enabled);
if ( view instanceof ViewGroup ) {
ViewGroup group = (ViewGroup)view;
for ( int idx = 0 ; idx < group.getChildCount() ; idx++ ) {
enableDisableView(group.getChildAt(idx), enabled);
}
}
}
答案 2 :(得分:0)
实际上感谢大家的支持,问题是我的,因为我在代码中滚动,我很抱歉