即使使用清单配置更改,onConfigurationChanged也不会被调用 - 为什么?

时间:2014-04-02 02:44:22

标签: android manifest screen-rotation onconfigurationchanged

我知道这个问题很糟糕,done thousands of times;但严重的是,我已经被困4小时试图解决这个问题。从2009年到今天,我进入了每个环节,所有人都给出了相同的解决方案(****知道原因)不适用于我的情况。

这是我的清单中的活动:

<activity 
android:name="com.example.activities.CamerasActivity"
android:configChanges="orientation|screenSize">
</activity> 

我使用SDK 4.0或更高版本:

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="19" />

这是我的班级:

public class CamerasActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.cameras_activity);

        VideoView videoView = (VideoView)findViewById(R.id.action_cameras);
        videoView.setVideoPath("/storage/sdcard/teste.mp4");
        videoView.start();
    }

    //Still not working
    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);

        if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE)
        {
            Log.d("System.out", "Welcome to Landscape Mode");
        }
        else if(newConfig.orientation==Configuration.ORIENTATION_PORTRAIT)
        {
            Log.d("System.out", "Welcome to portrait mode");
        }
    }
}

当我像这样运行我的应用程序时,我可以在纵向模式下看到,工作正常。如果我在清单上使用android:screenOrientation="landscape",我可以在横向模式下看到强制。这意味着我的布局很好,但为什么在我尝试旋转屏幕时我的onConfigurationChanged没有被调用?我错过了什么?

编辑:

AVD配置:

enter image description here

启用自动旋转: enter image description here

视频的方式: enter image description here 我的logcat没有输出。

1 个答案:

答案 0 :(得分:2)

当您实际旋转Android设备时,会调用onConfigurationChanged方法。因此,您需要旋转设备才能看到方法被调用。

注意:更改区域设置等时也会调用onConfigurationChanged。有关详细信息,请参阅here

另外,我会为android:configChanges指令设置这些值:

android:configChanges="orientation|screenSize|layoutDirection

此外,问题61671可能与本文中描述的屏幕方向问题有关。 截至2014年4月,Google尚未解决此缺陷/错误。

解决方法

如此SO link中所述,如果将设备类型设置为通用7“平板电脑而非 Nexus 7 ,则屏幕方向可能有效。< / p>