Passing data through intent using Serializable

前端 未结 11 1507
借酒劲吻你
借酒劲吻你 2020-11-22 13:35

I\'ve implemented my class with serializable, but it still didn\'t work.

This is my class:

package com.ursabyte.thumbnail;

import java.io.Serializab         


        
11条回答
  •  清酒与你
    2020-11-22 13:50

    1- You are using android.graphics.Bitmap which doesn't implements Serializable class so you have to remove that class then it will work.

    2- for brief you can visit how to pass data between intents.

提交回复
热议问题