Returning from an activity using navigateUpFromSameTask()
问题 I have two activities, A and B. When activity A is first started, it accesses the Intent passed to it (because the Bundle is null , as it should be the first time through), and displays information accordingly: CustInfo m_custInfo; ... protected void onCreate(Bundle savedInstanceState) { ... Bundle bundle = (savedInstanceState == null) ? getIntent().getExtras() : savedInstanceState; m_custInfo = (CustInfo) m_bundle.getSerializable("CustInfo"); if (m_custInfo != null ... } This works fine the