Android E/Parcel﹕ Class not found when unmarshalling (only on Samsung Tab3)
问题 I\'ve been unable to resolve why this error occurs, and only on a Samsung Tab3 device, running 4.4.2? It happens when my MainActivity starts another Activity, and passes a Parcelable class in the intent like so: private void debugTest(TestParcel cfgOptions){ TestParcel cfgOptions = new TestParcel(); cfgOptions.setValue(15); //just to verify Intent intent = new Intent(MainActivity.this, TestActivity.class); intent.putExtra(\"cfgOptions\", cfgOptions); startActivityForResult(intent, DBG_TEST);