gpt4 book ai didi

android - android :configChanges ="density" 不调用 onConfigurationChanged()

转载 作者:行者123 更新时间:2023-11-29 23:23:17 25 4
gpt4 key购买 nike

我为 list 文件中的 Activity 添加了 android:configChanges="density"。但我没有收到 onConfigurationChanged() 回调

    <?xml version="1.0" encoding="utf-8"?>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".ClientActivity" android:configChanges="density">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

我在下面提到了 onConfigurationChanged() 方法。实际上我在那个里面什么也没做。如果我收到回电,我想继续进行下去。

    @Override
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
}

最佳答案

添加 list

android:configChanges="keyboardHidden|orientation|screenSize"

添加 Activity 。

@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Log.d("OrientationMyApp", "Current Orientation : Landscape");

} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Log.d("OrientationMyApp", "Current Orientation : Portrait");
// Your magic here for portrait mode
}
}

关于android - android :configChanges ="density" 不调用 onConfigurationChanged(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53880529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com