메인엑티 복사해서 PersonInfo 만든다.안드로이드메니페스트에 PersonInfo를 등록한다.menu_main를 menu_personinf로 수정 액티비티 전환.. 홈으로도 가고 인물 등록으로도 간다.if (id == R.id.action_settings2) { // 인물 등록 액비티비 전환 Intent it = new Intent(this, PersonReg.class); startActivity(it); return true;} else if (id == R.id.action_settings1) { // 인물 등록 액비티비 전환 Intent it = new Intent(this, MainActivity.class); startActivity(it); re..