为什么不调用onConfigurationChanged?

时间:2017-05-22 07:26:45

标签: android orientation kotlin onconfigurationchanged

我正在编写一个代码,可以在更改方向时更改TextView的文本 我正在使用onConfigurationChanged()侦听器来更改文本

override fun onConfigurationChanged(newConfig: Configuration?) {
    super.onConfigurationChanged(newConfig)

    val orientation : Int = getResources().getConfiguration().orientation
    val oTag = "Orientation Change"

    if(orientation == (Configuration.ORIENTATION_LANDSCAPE)){
        mytext?.setText("Changed to Landscape")
        Log.i(oTag, "Orientation Changed to Landscape")

    }else if (orientation == (Configuration.ORIENTATION_PORTRAIT)){
        mytext?.setText("Changed to Portratit")
        Log.i(oTag, "Orientation Changed to Portratit")
    }else{
        Log.i(oTag, "Nothing is coming!!")
    }
}

但即使在日志

中也没有任何反应

我也已将此属性添加到清单文件中的活动

android:configChanges="orientation"

我在这里缺少什么? 还有其他方法可以达到这个目的吗?

1 个答案:

答案 0 :(得分:3)

使用此代码获取配置

override fun onConfigurationChanged(newConfig: Configuration?) {
        super.onConfigurationChanged(newConfig)
        if (newConfig != null) {
            if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
                Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
            } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
                Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
            }
        }
    }

要尝试的几件事情:

android:configChanges="orientation|keyboardHidden|screenSize"而不是android:configChanges="orientation"

确保您没有在任何地方致电setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);。这将导致onConfigurationChange()无法触发。