Most visited

Recently visited

ViewPager.SavedState

public static class ViewPager.SavedState
extends AbsSavedState

java.lang.Object
   ↳ android.support.v4.view.AbsSavedState
     ↳ android.support.v4.view.ViewPager.SavedState


这是由ViewPager保存的持久状态。 只有在创建必须保存其自己状态的ViewPager的子类时才需要,在这种情况下,它应该实现包含该状态的子类。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<ViewPager.SavedState> CREATOR

Inherited fields

From class android.support.v4.view.AbsSavedState

Public constructors

ViewPager.SavedState(Parcelable superState)

Public methods

String toString()

返回对象的字符串表示形式。

void writeToParcel(Parcel out, int flags)

将此对象平铺到一个包裹中。

Inherited methods

From class android.support.v4.view.AbsSavedState
From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Creator<ViewPager.SavedState> CREATOR

Public constructors

ViewPager.SavedState

ViewPager.SavedState (Parcelable superState)

Parameters
superState Parcelable

Public methods

toString

String toString ()

返回对象的字符串表示形式。 通常, toString方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.

writeToParcel

void writeToParcel (Parcel out, 
                int flags)

将此对象平铺到一个包裹中。

Parameters
out Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!