3
<ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scrollbars="none" >
</ScrollView>

我设置了 android:scrollbars="none",滚动视图不起作用

4

1 回答 1

5

您可以使用 findViewById 获取 ScrollView 的实例并以编程方式禁用滚动条,请参阅此Blog

  ScrollView sView = (ScrollView)findViewById(R.id.ScrollView01);
  sView.setVerticalScrollBarEnabled(false);
  sView.setHorizontalScrollBarEnabled(false);
于 2012-05-29T06:19:15.497 回答