안녕하세요?


제가 기존 액티비티(A)에서 다른 레이아웃의 xml(B)을 inflate로 호출하고


호출한 레이아웃(B)에서 버튼을 클릭했을때 기존 액티비티(A)에 있던 View들이 다시 보이게 할라면 어떻게 


어떤 식으로 재호출을 해야하죠?


(B)를 호출한 내용은 이렇습니다~


inflater = (LayoutInflater) getSystemService( Context.LAYOUT_INFLATER_SERVICE ); 

linearLayout = (LinearLayout) inflater.inflate( R.layout.menu, null ); 

setContentView( linearLayout );