티스토리 뷰


LinearLayout myLinearLayout = (LinearLayout)findViewById(R.id.mylinear);

   LayoutInflater layoutInflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
   View view = (LinearLayout)layoutInflater.inflate(R.layout.mylayer, null);

   myLinearLayout.addView(view);

위에처럼 layoutInflater  를 생성하고 inflater를 이용해 타 레이아웃을 전개하여
현 레이아웃에 삽입시킬 수 있다.

[작성자] devbible.tistory.com


댓글