Fragment
を使用してレイアウトを呼び出します
LinearLayout formLayout = (LinearLayout)findViewById(R.id.mainLayout);
formLayout.removeAllViews();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
PatientSearch fragment = new PatientSearch(maincontrolActivity.this);
fragmentTransaction.add(R.id.mainLayout,fragment, "MY_FRAG");
fragmentTransaction.commit();
内PatientSearch
に、別のロードをクリックしたときに必要なボタンがありますFragment
が、古いの境界内にありFragment
ます。
それを行う方法はありますか?