我在活动开始时试图隐藏片段,我的布局如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:background="#eee"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.TypeFragment"
android:id="@+id/type_fragment"
android:layout_width="184dp"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:text="@string/type"
/>
<fragment android:name="com.ModeFragment"
android:id="@+id/mode_fragment"
android:layout_below="@id/type_fragment"
android:layout_width="184dp"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:text="@string/mode"
/>
<fragment
android:id="@+id/canvas_fragment"
android:name="com.CanvasFragment"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/type_fragment" />
<fragment android:name="com.NumericsInputFragment"
android:id="@+id/numeric_area"
android:layout_below="@id/mode_fragment"
android:layout_width="184dp"
android:layout_height="wrap_content" />
</RelativeLayout>
我的MainActivity扩展了FragmentActivity并具有以下onCreate
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_canvas);
Log.d("ACTIVITY" , "linside");
// Check which layout we are using
if(findViewById(R.id.fragment_container) != null) {
/* if it is restored from a previous state - simply return */
if (savedInstanceState != null) {
return;
}
/* Create a TypeFragment */
TypeFragment firstFragment = new TypeFragment();
//firstFragment.getView().setBackgroundColor(Color.GRAY);
ModeFragment secondFragment = new ModeFragment();
/* This is the numerics Fragement */
NumericsInputFragment numericsFragment = new NumericsInputFragment();
/* Pass the Intents Extras to the Fragment */
firstFragment.setArguments(getIntent().getExtras());
secondFragment.setArguments(getIntent().getExtras());
/* Add the fragment to the fragment container */
getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_container, firstFragment, null)
.add(R.id.fragment_container, secondFragment, null)
.add(R.id.fragment_container, numericsFragment, null)
.commit();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.hide(getFragmentManager().findFragmentById(R.id.numeric_area));
transaction.commit();
}
}
我所做的一切似乎都对我的初始布局产生了影响。即如果我删除所有.add()语句,我仍然得到相同的布局。显然我在这里做了一些非常错误的事情,有人可以对我可能做错的事情有所了解吗?
修改
我用更新版本替换了布局,用FrameLayout替换了动态片段,如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:background="#eee"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.TypeFragment"
android:id="@+id/type_fragment"
android:layout_width="184dp"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:text="@string/type"
/>
<fragment android:name="com.ModeFragment"
android:id="@+id/mode_fragment"
android:layout_below="@id/type_fragment"
android:layout_width="184dp"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:text="@string/mode"
/>
<fragment
android:id="@+id/canvas_fragment"
android:name="com.CanvasFragment"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/type_fragment" />
<FrameLayout
android:id="@+id/numeric_area"
android:layout_width="184dp"
android:layout_height="match_parent"
android:layout_below="@id/mode_fragment"
android:background="?android:attr/detailsElementBackground"
/>
</RelativeLayout>
然后我可以控制是否按照此处http://developer.android.com/guide/components/fragments.html
所述显示答案 0 :(得分:2)
您无法添加/替换/隐藏您在布局文件中静态定义的片段。您可以使用Framelayout并使用FragmentManager / FragmentTransaction将其替换为片段实例。 Check out this link