码迷,mamicode.com
首页 > 移动开发 > 详细

android scrollview组件禁止滑动的方法

时间:2015-05-23 01:11:17      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:

 

xml配置:
          android:id="@+id/sc_freement"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" 
            android:layout_below="@id/category_line"
android:scrollbars="none"
android:fadingEdge="none">
</<span style="line-height: 21px; ">ScrollView>
 
java代码控制:
ScrollView  scrollView = (ScrollView)this.findViewById(R.id.sc_freement);
scrollView.setOnTouchListener(new View.OnTouchListener(){
@Override
public boolean onTouch(View arg0, MotionEvent arg1) {
return true;
}
});

android scrollview组件禁止滑动的方法

标签:

原文地址:http://www.cnblogs.com/exmyth/p/4523516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!