【发布时间】:2015-08-07 23:06:14
【问题描述】:
试图跟随某事。归结为最简单:在我的 AndroidManifest.xml 我有以下内容:
<application
android:allowBackup="true"
android:configChanges="orientation"
...
</application>
在我运行的活动中,我有这个:
@Override
public void onConfigurationChanged(Configuration newConfig) {
Log.d("PrimesAreInP", "onConfigurationChanged called");
}
但是,当我将手机的方向从纵向更改为横向时,我从未看到 onConfigurationChanged() 打印。我还需要做什么才能看到这个电话?
【问题讨论】:
-
将此添加到清单中的活动属性中
标签: android orientation onconfigurationchanged