如何设置android显示垂直方向?

从以下.xml文件中我设置xml以显示TabHost,但是在我在模拟器上运行它后,它同时显示两个方向.我想将其设置为仅显示一个方向.我该怎么办?谢谢.

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <RelativeLayout 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <FrameLayout android:id="@android:id/tabcontent"
             android:layout_width="fill_parent" 
             android:layout_height="fill_parent"
             android:layout_alignParentTop="true" 
             android:layout_above="@android:id/tabs" />
    <TabWidget android:id="@android:id/tabs"
             android:layout_width="fill_parent" 
             android:layout_height="wrap_content"
             android:layout_alignParentBottom="true" />
    </RelativeLayout>
</TabHost>

解决方法:

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

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

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

上一篇:正确使用陀螺仪和加速度计在ANDROID上的任何轴上获得可靠的电流角度


下一篇:php – 直接从iPad上传到网站时,Ipad照片不会旋转,但从计算机上传时可以正常