gpt4 book ai didi

android - Android 上的选项卡控件

转载 作者:行者123 更新时间:2023-11-29 02:16:50 27 4
gpt4 key购买 nike

我想在android 上制作一个Tab 控件。但是选项卡控件显示在顶部,其中我希望它显示在底线

有人能帮忙吗

最佳答案

布局中的 tabwidget 对象是将包含选项卡的 View 。您可以将其移动到屏幕上您喜欢的任何位置。

这是一个关于如何使用 RelativeLayout 将它放在屏幕底部的示例

<?xml version="1.0" encoding="utf-8"?>
<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">

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

...

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>

</RelativeLayout>

关于android - Android 上的选项卡控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3099533/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com