使 类 像 String 一样可打包?
Make classes like String parcelable?
有什么方法可以使 final/closed class 可打包吗?例如。 String
或 ZonedDateTime
(来自 java.time
)。
Is there any way to make a final/closed class parcelable?
不,抱歉。
E.g. String or ZonedDateTime(from java.time).
Android 已经可以将 String
放入 Parcel
,因此没有必要以某种方式将其变为 Parcelable
.
此外,请记住习俗 Parcelable
类 cannot be used in all cases。今天早上我不得不处理这个特殊问题。
有什么方法可以使 final/closed class 可打包吗?例如。 String
或 ZonedDateTime
(来自 java.time
)。
Is there any way to make a final/closed class parcelable?
不,抱歉。
E.g. String or ZonedDateTime(from java.time).
Android 已经可以将 String
放入 Parcel
,因此没有必要以某种方式将其变为 Parcelable
.
此外,请记住习俗 Parcelable
类 cannot be used in all cases。今天早上我不得不处理这个特殊问题。