这是我的布局:
我需要在方向改变时保存滚动位置。例如,如果屏幕在纵向模式下显示从中间名称开始的布局,则它应该在横向模式下从相同的位置开始。
答案 0 :(得分:35)
要在手机方向更改时保存并恢复ScrollView的滚动位置,您可以执行以下操作: 将当前位置保存在onSaveInstanceState方法中:
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putIntArray("ARTICLE_SCROLL_POSITION",
new int[]{ mScrollView.getScrollX(), mScrollView.getScrollY()});
}
然后恢复onRestoreInstanceState方法中的位置。请注意,我们需要将一个Runnable发布到ScrollView以使其工作:
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
final int[] position = savedInstanceState.getIntArray("ARTICLE_SCROLL_POSITION");
if(position != null)
mScrollView.post(new Runnable() {
public void run() {
mScrollView.scrollTo(position[0], position[1]);
}
});
}
在谷歌上找到这个解决方案。归功于Original Coder。 :)
答案 1 :(得分:35)
只需在滚动元素上设置 android:id 即可。您的视图会自动保存它的滚动位置。
来自View.java的代码:15554
protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) {
if (mID != NO_ID && (mViewFlags & SAVE_DISABLED_MASK) == 0) {
mPrivateFlags &= ~PFLAG_SAVE_STATE_CALLED;
Parcelable state = onSaveInstanceState();
if ((mPrivateFlags & PFLAG_SAVE_STATE_CALLED) == 0) {
throw new IllegalStateException(
"Derived class did not call super.onSaveInstanceState()");
}
if (state != null) {
// Log.i("View", "Freezing #" + Integer.toHexString(mID)
// + ": " + state);
container.put(mID, state);
}
}
}
答案 2 :(得分:0)
在我的三星平板电脑上,我没有添加太多代码(只是调用超类)。另外,我已经在ListView上有了一个名字。
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
}
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/search_text"
android:maxLines="1"
android:inputType="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="Enter search string here" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="doSearch"
android:clickable="true"
android:text="Search"
android:layout_toRightOf="@id/search_text"/>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_of_books"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/search_text"
android:divider="@null"
android:orientation="vertical" />
</RelativeLayout>
答案 3 :(得分:-1)
引用它们来保持滚动位置并在方向改变后滚动。
答案 4 :(得分:-4)
在清单中这样做。
<activity
android:name=".YourActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name" >
</activity>
答案 5 :(得分:-12)
您如果您的活动没有改变任何旋转,您可以使用 这个特定活动中的清单文件中的android:configChanges =“orientation | keyboardHidden | screenSize”。但这显然是解决方法,而不是一个合适的解决方案。
注意:
如果您需要对横向和肖像使用不同的视图,或者如果您需要为不同的设备使用不同的视图,则应该使用捆绑包并在onaveinstancestate上保存数据并在oncreate中检索数据。此方法停止重新创建活动,并且活动假定用户将自己处理事情。