我调用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
。
知道怎么做吗?