Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我第一次遇到这个问题。我注意到当@ParcelConstructor 包含布尔字段时会抛出上述异常。也许您有任何解决方案可以将布尔值输入构造函数问候 Shogun
在这种情况下,您需要添加@ParcelProperty。
一个例子:
@Parcel(Parcel.Serialization.BEAN) private data class Model @ParcelConstructor constructor( @ParcelProperty("valid") val isValid: Boolean )