我正在学习片段,下面给出的是我的第一个片段程序。一个简单的项目,我有 2 个屏幕。当我单击第一个屏幕的下一个按钮时,需要显示第二个按钮。
我的目标是 Android 2.1 及更高版本并使用兼容性包
AppMainFragmentActivity.java
public class AppMainFragmentActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle arg0) {
super.onCreate(arg0);
setContentView(R.layout.app_main_layout);
}
}
app_main_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:id="@+id/fragment_container">
<fragment class="com.research.fragmentstudy.FirstFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/id_first_fragment"/>
</LinearLayout>
FirstFragment.java
public class FirstFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.first_fragment_layout
, container,false);
Button nextButton =(Button) view.findViewById(R.id.button);
nextButton.setOnClickListener(nextListener);
return view;
}
private OnClickListener nextListener = new OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fm = ((AppMainFragmentActivity)FirstFragment.this
.getActivity()).getSupportFragmentManager();
SecondFragment fragment = new SecondFragment();
FragmentTransaction ft = fm.beginTransaction();
ft.add(R.id.fragment_container, fragment);
ft.commit();
}
};
}
first_fragment_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:id="@+id/first_fragment_root">
<TextView android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="Fragment 1" android:gravity="center_horizontal" />
<Button android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content" android:id="@+id/button"
android:text="Next" />
</LinearLayout>
SecondFragment.java
public class SecondFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.second_fragment_layout,
container,false);
return view;
}
}
second_fragment_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:id="@+id/first_fragment_root">
<TextView android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="Fragment 2" android:gravity="center_horizontal" />
</LinearLayout>
好吧,我得到了第一个屏幕。现在,
根据我对片段的理解,我所期望的
- 当我单击屏幕 1 中的 Next 按钮时,将创建 SecondFragment,
onCreate()
并onCreateView()
调用它。 - 显示了 SecondFragment,并且 FirstFragment 被销毁(因为我没有将它添加到 backstack)。由于默认片段事务没有动画,因此不会有任何动画。
怎么了
- SecondFragment 被创建好了,它
onCreate()
被onCreateView()
调用了。 - 但 FirstFragment 仍然在屏幕上,第二个从未显示。
现在我对片段的理解可能是错误的。但我相信当我们 commit() 一个片段事务时,第一个片段应该被第二个片段替换(第一个片段要么被隐藏要么被破坏)。好吧,似乎什么都没有发生。这是为什么?我们应该手动销毁/隐藏第一个片段吗?
注意:我知道对于这样一个基本的事情来说这是一个很长的问题。但是我把我的整个代码都放了,因为我不确定我在哪里搞砸了。