设置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>

在manifest添加android:screenOrientation="portrait"

android:screenOrientation="portrait">