在此先感谢您的帮助。这是我在创建第一个应用程序时遇到的问题。
我正在创建应用程序,其中用户可以选择从图库或相机中获取图像,当从图库导入图像时,应用程序正在按需工作,但是当从相机拍摄图像时,intent
返回{{1 }}。
null
答案 0 :(得分:3)
<activity
android:name="com.example.AddPhotoActivity"
android:label="Add Photo"
android:configChanges="orientation|screenSize"
android:screenOrientation="portrait"
>
通过在清单中添加此项,我可以存储我的活动状态,然后我的活动不会再次启动,但是从previuos状态恢复并且相机意图不会返回null
android:configChanges="orientation|screenSize"