IT/안드로이드+JAVA

[안드로이드] putExtra, getExtra (펌)

안경 쓴 귀니 2016. 4. 21. 11:30
반응형

보내는 클래스======================================================

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.getStringExtra("s_fileName");


[출처] http://www.androidpub.com/2072390

반응형