보내는 클래스======================================================Intent i = new Intent(현재클래스이름.this, 이동할클래스이름.class); i.putExtra("m_select", 변수값A); i.putExtra("s_fileName", 변수값B); startActivityForResult(i, 1); 받는 클래스=======================================/** 전송메시지 */ Intent i = getIntent(); m_select = i.getIntExtra("m_select", 0); // m_select값을 얻어내고... 만약 m_select값이 없다면 디폴트로 0을 준다. s_fileName = i.ge..