시작 시 번들 전달 활동()? 현재 실행 중인 활동에 번들을 전달하는 올바른 방법은 무엇입니까?공유 속성?몇 가지 옵션이 있습니다. 1) 의도에서 번들을 사용합니다. Intent mIntent = new Intent(this, Example.class); Bundle extras = mIntent.getExtras(); extras.putString(key, value); 2) 새 번들 만들기 Intent mIntent = new Intent(this, Example.class); Bundle mBundle = new Bundle(); mBundle.putString(key, value); mIntent.putExtras(mBundle); 3) intent의 putExtra() 바로가기 메서드 사용 In..