소스 코드
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onButtonClicked(View v){
//뿌려줄 공간 layout id로 찾아온다.이미 메인에서 메모리에 올라 갔으니 찾을 수 있다.
LinearLayout container = (LinearLayout)findViewById(R.id.container);
//시스템서비스 에서(getSystemService) 참조된 특정 객체를 가져온다
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
//sub_layout.xml 에있는것 메모리에 객체화 (가져온것 메모리에 올린다..)
// 객체화 시킨것 activity_main 에서 만든 LineLayout container 여기에 뿌린다.
inflater.inflate(R.layout.sub_layout,container,true);
Button btn2 = (Button) findViewById(R.id.button2);
btn2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getApplicationContext(),"내부 클릭",Toast.LENGTH_SHORT).show();
}
});
}
':::: 개발 :::: > :::: 안드로이드 ::::' 카테고리의 다른 글
안드로이드 스튜디오 풀화면 & no titlebar 오류.. (1) | 2015.04.08 |
---|---|
node.js push 구현 정리.. (2) | 2015.03.24 |
안드로이드 스튜디오 앱스토어 apk 만들기 (keystore 관리방법) (0) | 2015.03.11 |
안드로이드 스튜디오 Unable to start the daemon process JVM 에러 (2) | 2015.03.11 |
NumberFormat Exception ...integer.parseInt (0) | 2014.10.02 |
안드로이드 화면 회전 액티비티 새로 읽는문제 (0) | 2014.06.18 |
GCM 푸쉬 라이브러리 추가하기 (0) | 2014.05.30 |
안드로이드 프로젝트 불러올때 오류 .. (빌드 타켓 설정 ) (0) | 2014.04.21 |