Android应用程序始终保持在横向

时间:2011-07-04 04:17:58

标签: android xml android-layout

我看了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"/>

3 个答案:

答案 0 :(得分:8)

在manifest.xml文件中添加此行。

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

如果您只想横向定位,则更改横向而不是纵向

请参阅此How to set android show vertical orientation?

答案 1 :(得分:3)

在清单文件中添加以下属性的所有活动:

android:screenOrientation =“landscape”

例如:

<activity  android:name=".MainActivity"  android:screenOrientation="landscape"  "  >
              <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

您可以在清单文件中的应用程序标记中添加此属性。

希望这有助于您解决问题。

答案 2 :(得分:1)

您需要将android:screenOrientation="landscape"放在AndroidManifest.xml文件中的活动代码中。

参考:http://developer.android.com/guide/topics/manifest/activity-element.html