Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从肖像活动中打开相机。在活动结果上,我正在调用 asynctask 并在其中传递活动的上下文。如果我以纵向模式打开相机,一切正常,但在横向模式下,我的异步任务中的上下文为空。
在我的 FragmentActivity 中覆盖 onConfigurationChanged 解决了我的问题。
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); }
只需在清单文件中的活动中添加以下行:
android:screenOrientation="portrait"