gpt4 book ai didi

android - 基于资源值(value)的 Activity 导向

转载 作者:行者123 更新时间:2023-11-29 02:20:40 26 4
gpt4 key购买 nike

有没有办法根据存储的 res 值在 list 中定义屏幕方向?

例如:

<activity
android:name=".activities.MainActivity"
android:screenOrientation="@integer/screenOrientation"
...

我想将手机的方向锁定为纵向,而不是平板电脑。我在代码中执行此操作,但在执行之前有一段短暂的时间,应用程序在手机上以横向显示然后捕捉到纵向。希望避免这种情况。

希望我可以使用整数或字符串形式的值并将它们放在所需的 dimen 文件夹中

如果可能的话,我找不到可用方向选项的值,有人可以提供吗?

非常感谢!

最佳答案

/** Constant for {@link #orientation}: a value indicating that no value has been set. */
public static final int ORIENTATION_UNDEFINED = 0;
/** Constant for {@link #orientation}, value corresponding to the
* <a href="{@docRoot}guide/topics/resources/providing-resources.html#OrientationQualifier">port</a>
* resource qualifier. */
public static final int ORIENTATION_PORTRAIT = 1;
/** Constant for {@link #orientation}, value corresponding to the
* <a href="{@docRoot}guide/topics/resources/providing-resources.html#OrientationQualifier">land</a>
* resource qualifier. */
public static final int ORIENTATION_LANDSCAPE = 2;

Check the available configuration

关于android - 基于资源值(value)的 Activity 导向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56048811/

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