程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> layout-設置android界面垂直顯示

layout-設置android界面垂直顯示

編輯:編程綜合問答
設置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>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved