인텐트로 해시테이블 데이타를 passing 할 때 방법입니다.
// A.class
Hashtable m_hash = new Hashtable();
m_hash.put("1", "aimh" );
m_hash.put("2", "tcher" );
m_hash.put("3", "picomax" );
Intent intent = new Intent(this, B.class);
intent.putExtra("data", m_hash);
해시테이블 데이타를 받을 때
// B.class
Serializable m_data = getIntent().getSerializableExtra("data");
Hashtable m_hash = new Hashtable((HashMap)m_data);
//m_hash.get("1");
//m_hash.get("2");
//m_hash.get("3");
Posted by Tcher