在调试另一个问题时,我意识到我的一个活动的onCreateView
方法被调用了两次。我是编程的新手,我不完全理解活动加载时android
如何调用这些方法,但对我而言似乎并不合适它会被叫两次。消除了我的大部分代码,我仍然会看到我的System.out
消息两次。
public class AddCourse extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_course);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new AddCourseFragment()).commit();
}
}
public static class AddCourseFragment extends Fragment {
View rootView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
rootView = inflater.inflate(R.layout.fragment_add_course,
container, false);
System.out.println("I see this TWICE!!!!");
return rootView;
}
}
}
这几乎与我的主要活动实施完全相同,但是那个没有经过onCreateView
两次。想法?
我的 activity_add_course xml已被请求...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.NsouthProductions.gradetrackerpro.AddCourse$AddCourseFragment"
android:id="@+id/AddCourseFrag"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
答案 0 :(得分:14)
看起来你要两次添加片段。如果你在xml中声明它,那么你也不需要以编程方式添加它。
您可以从活动 onCreate()
删除:
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new AddCourseFragment()).commit();
}