gpt4 book ai didi

Android 应用程序始终保持横向

转载 作者:数据小太阳 更新时间:2023-10-29 02:47:54 26 4
gpt4 key购买 nike

我看过Here但我仍然无法解决我的问题。

我最近跳进了 android(headfirst)并且一直在胡闹。我希望我的应用程序只在横向模式下运行,无论屏幕以何种方式倾斜。

我的主屏幕基本上是一个带有背景和右侧对齐的几个按钮的页面。

这是我的 XML

   <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingLeft = "450px"
android:paddingRight = "60px"
android:paddingTop="25px"
//I have tried adding orientation commands here like the one below??
android:screenOrientation="landscape"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background = "@drawable/sign"
>

<Button
android:id="@+id/Button1"
android.layout_height="60px"
android.layout_width="30px"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="Button1"/>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<Button
android:id="@+id/Button2"
android.layout_height="60px"
android.layout_width="30px"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="Button2"/>

最佳答案

将此行添加到您的 manifest.xml 文件中。

<activity android:name=".activity" android:screenOrientation="portrait"></activity>

如果你只想要横向,那么改变横向而不是纵向

看这个How to set android show vertical orientation?

关于Android 应用程序始终保持横向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6567239/

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