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