Android的滚动型机器人集:滚动条="无",滚动视图无法正常工作

Android的滚动型机器人集:滚动条="无",滚动视图无法正常工作

问题描述:

<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:滚动条=无,滚动视图无法正常工作

I set android:scrollbars="none",the scrollview doesn't work

您可以用findViewById获得滚动型的实例和编程禁用滚动条,请参阅本Blog$c$c>

You can get the instance of ScrollView using findViewById and disable the scrollbars programatically, refer this Blog

  ScrollView sView = (ScrollView)findViewById(R.id.ScrollView01);
  sView.setVerticalScrollBarEnabled(false);
  sView.setHorizontalScrollBarEnabled(false);