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

发布于 2024-11-09 17:02:18 字数 1013 浏览 2 评论 0原文

从以下 .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>

From following .xml file I set xml to show TabHost but after i run it on emulator it show both both orientation. i want to set it to show only one orientation. How do i do? THanks you.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独木成林 2024-11-16 17:02:18

将此行添加到您的manifest.xml 文件中。

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

如果您只想横向,请更改为横向而不是纵向

add this line in your manifest.xml file.

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

if you want only landscape orientation then change to landscape instead of portrait

野侃 2024-11-16 17:02:18

在清单中的 Activity 中设置此 android:screenOrientation="portrait"

Set in this android:screenOrientation="portrait" in your activity in manifest .

染墨丶若流云 2024-11-16 17:02:18

在 AndroidMainfeast.xml 文件中
你会看到

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

在 .MainActivity android:configChanges="" 之后添加

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

帮助我们在旋转时防止 onpause() 和 OnResume() 方法。

In the AndroidMainfeast.xml file
you will see

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

so Add after .MainActivity

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

android:configChanges="" help us to prevent onpause() and OnResume() method when we made rotation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文