解决scrollview中内容改变后自动滑动到底部的问题

原文地址 http://blog.csdn.net/ytyese/article/details/52712374   作者 ytyese

将scrollview包裹的内容设置上以下俩个熟悉

Android:focusable="true"  
android:focusableInTouchMode="true"

例如:

   

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none"
    >
            android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:focusable="true"
        android:focusableInTouchMode="true"
        >
        

        
 LinearLayout>

你可能感兴趣的:(解决scrollview中内容改变后自动滑动到底部的问题)