Serializable crash error when loading web broser from my application

前端 未结 3 1584
醉话见心
醉话见心 2021-01-23 16:48

I\'m developing an application.

This application contains 2 classes

  • Discovery class which implements serializable

  • Main class which exten

3条回答
  •  太阳男子
    2021-01-23 17:06

    As far as I know Serializable is slow on Android, you should use Parcelable instead, see this link for more info: Benefit of using Parcelable instead of serializing object

    Regards

提交回复
热议问题