如何强制Scrollview从子视图的顶部开始?

时间:2015-09-13 01:49:57

标签: android android-scrollview childviews

我在横向布局中设置了一个简单的ScrollView。当我将设备从纵向模式旋转到横向模式时,UI屏幕向下滚动一点,视图的最顶部不再可见。如何强制视图从视图顶部开始?我尝试设置“mScrollView.scrollTo(0,0);”以编程方式但没有运气。请指教。

部分land \ layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:focusableInTouchMode="true"
tools:context=".CardViewActivity">

<include
    android:id="@+id/toolbar"
    layout="@layout/toolbar" >
</include>

<ScrollView
    android:id="@+id/ScrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"  >

<LinearLayout
    android:id="@+id/LinearLayout1"
    style="@style/scrollbar_shape_style"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/rounded_corner"
    android:layout_marginLeft="6dp"
    android:layout_marginStart="6dp"
    android:layout_marginRight="6dp"
    android:layout_marginEnd="6dp"
    android:layout_marginTop="6dp"
    android:layout_marginBottom="6dp"
    android:useDefaultMargins="false"
    android:orientation="vertical"
    android:paddingRight="2dp"
    android:paddingEnd="2dp"  >

部分活动文件:

...
private ScrollView mScrollView;

@Override
protected void onResume() {
    super.onResume();
mScrollView = (ScrollView) findViewById(R.id.ScrollView1);
    if (mScrollView!=null) {
        mScrollView.setSmoothScrollingEnabled(false);
        mScrollView.fullScroll(ScrollView.FOCUS_UP);
        mScrollView.setSmoothScrollingEnabled(true);
    }
}

1 个答案:

答案 0 :(得分:0)

在了解背景之后,我建议使用相同的布局,使用scrollview,也可以使用。 Scrollview会自动完成这项工作。