Как настроить андроид показывать вертикальную ориентацию? - PullRequest
8 голосов
/ 25 мая 2011

Из следующего 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>

Ответы [ 3 ]

24 голосов
/ 25 мая 2011

добавьте эту строку в ваш файл manifest.xml.

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

, если вы хотите использовать только альбомную ориентацию, измените на landscape вместо portrait

8 голосов
/ 25 мая 2011

Установите в этом android:screenOrientation="portrait" в вашей активности в манифесте.

0 голосов
/ 03 июля 2018

В файле AndroidMainfeast.xml вы увидите

<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar">
</activity>

, поэтому добавьте после .MainActivity

android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation|screenSize"

android: configChanges = "" поможет нампредотвратить onpause () и метод OnResume (), когда мы сделали вращение.

...