startActivityForResult(Intent i, int requestCode) 와 onActivityResult(int requestCode, int resultCode, Intent data)가 쌍으로 이루어져 Activity간 데이터를 주고 받을 수 있다. getIntent() 함수는 현재 Intent를 호출한 Intent를 반환한다.(Return the intent that started this activity.) 즉, 아래 예제에서 Activity B에서 getIntent()를 실행하면 Activity A의 Intent i 가 리턴 되는 것이다. + Activity A @Override public void onClick(View v) { // TODO Auto-generated me..