Android棒应用程序始终以横向模式运行

时间:2014-03-03 10:42:37

标签: android android-orientation

我开发了一个应用程序,我设置我的应用程序以纵向模式运行。 但在android中,任何应用程序都以横向模式运行。

有没有办法在纵向模式下运行我的应用程序。

我已尝试过Play商店中的所有应用,其功能是更改屏幕方向。 但是没有在Android棒中工作。

请帮助!!!

1 个答案:

答案 0 :(得分:1)

我不确定我是否理解正确,因为你的问题不是很清楚。

无论如何,您可以使用Activity's onCreate(...)方法强制纵向或横向模式

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

        // force portrait mode
       setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

       // other stuff...
    }