如何设置screenOrientation系统活动?

时间:2013-08-19 10:10:21

标签: android eclipse android-activity screen-orientation

我想设置screenOrientation的设置活动。

在我的应用中:

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.android.settings","com.android.settings.Settings"));

根据上面的代码,我可以调用设置活动。 但是这个活动的景观是固定的。垂直。 我想将此活动的screenOrientation更改为水平(横向)。

2 个答案:

答案 0 :(得分:0)

由活动来决定它支持的方向,而不是你。您不能将开始时的活动限制为特定方向,除非您可以更改自动旋转的全局设置(您不能这样做,因为它是系统设置)。

答案 1 :(得分:0)

您可以按代码锁定方向

http://eigo.co.uk/labs/lock-screen-orientation-in-android/

参考此链接可以帮助您