我的应用中有几个ListViews
,我在每个人中编写了几乎相同的代码,但有些代码ScrollBar
,它们都有android:scrollBars = "none"
,但它不起作用。
那么问题是什么?如何隐藏ScrollBars?
布局文件:
<com.zuanbank.android.widgets.RefreshListView
android:id="@+id/list_view"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/main_bg"
android:orientation="vertical"
android:scrollbars="none"
app:init_footer="true"
app:init_header="false">
</com.zuanbank.android.widgets.RefreshListView>
我的风格:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar"> </style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowAnimationStyle">@style/activityAnimation</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowBackground">@null</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorControlNormal">@color/blue_00a0ea</item>
<item name="colorControlActivated">@color/colorControlActivated</item>
<item name="colorSwitchThumbNormal">@color/blue_00a0ea</item>
</style>
答案 0 :(得分:1)
如果xml无效,请尝试以编程方式隐藏它。
listview.setVerticalScrollBarEnabled(false);
listview.setHorizontalScrollBarEnabled(false);
无论如何,xml方式应该正常工作......正如the docs所述。
android:scrollbars="none"
修改:看起来,您没有使用默认的ListView
。一种选择是回滚到默认实现,并将其包装在SwipeRefreshLayout
。
像这样:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/srl_refresh">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lv_data"
android:choiceMode="singleChoice"
android:scrollbars="none" />
</android.support.v4.widget.SwipeRefreshLayout>
然后在Fragment
或Activity
上执行此操作:
srl_refresh = (SwipeRefreshLayout) rootView.findViewById(R.id.srl_refresh);
srl_refresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
doRefresh(); // Call your refresh method here.
}
});