AutoGo icon indicating copy to clipboard operation
AutoGo copied to clipboard

Serializable序列化对象无法传递

Open Khaos116 opened this issue 9 years ago • 1 comments

Khaos116 avatar Aug 20 '16 04:08 Khaos116

To solve this problem, add this code at the end of the method getData(Intent intent, String key, Class clz, Object defValue) of autogo.utils.IntentUtils: else if (Serializable.class.isAssignableFrom(clz)) { return checkNull(intent.getSerializableExtra(key), defValue); }

registernet avatar Aug 31 '16 09:08 registernet