我的MainActivity使用片段,布局的简化版本如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity">
<fragment
android:name="com.lafave.MyFragment1"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
<View
android:layout_width="@dimen/divider_width"
android:layout_height="match_parent"
android:background="@android:color/darker_gray" />
<fragment
android:name="com.lafave.MyFragment2"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
在Fragment中,我使用以下代码启动本机摄像头应用程序:
mRecentPhotoPath = file.getAbsolutePath();
final Uri uri = Uri.fromFile(file);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
我的片段的onActivityResult方法取决于要保留的mRecentPhotoPath的值:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
//mRecentPhotoPath is used here to display the photo.
}
}
但是,如果我在运行本机相机应用程序时旋转了设备,则将创建我的Fragment的新实例,并且不会保留mRecentPhotoPath。我以为可以通过在Fragment中实现onSaveInstanceState来解决此问题:
@Override
public void onSaveInstanceState(@NonNull Bundle outState) {
super.onSaveInstanceState(outState);
if(mRecentPhotoPath != null) {
outState.putString(RECENT_PHOTO_PATH_ARUGMENT, mRecentPhotoPath);
}
}
但是,即使我将状态保存到包中,当片段恢复时,onCreateView,onActivityCreated和onViewStateRestored方法的包始终为空。我在做什么错了?
实际上,无论使用哪种相机,这似乎都是一个问题。如果我旋转我的应用程序(未打开本机摄像头),则在诸如onCreateView之类的各种方法中,捆绑包始终为空。
答案 0 :(得分:0)
感谢@EpicPandaForce,您让我走上了正确的道路。问题是因为我的MainActivity的布局没有在Fragment上使用id。进行此更改可解决我的问题:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity">
<fragment
android:id="@+id/myFragment1"
android:name="com.lafave.MyFragment1"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
<View
android:layout_width="@dimen/divider_width"
android:layout_height="match_parent"
android:background="@android:color/darker_gray" />
<fragment
android:id="@+id/myFragment2"
android:name="com.lafave.MyFragment2"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>