在android视图底部添加标签栏的问题

发布于 2024-11-05 18:07:53 字数 2166 浏览 5 评论 0原文

在我的应用程序中,我有一个选项卡栏。它包含四个选项卡,我在其中显示列表视图。它工作正常,但现在我需要将选项卡栏移至屏幕底部。当我更改代码以在视图底部显示选项卡栏时,列表视图也会以全屏方式显示,与选项卡栏重叠。

这是示例代码,

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/mainlayout"
             android:layout_height="fill_parent" 
             android:layout_width="fill_parent"
             android:orientation="vertical" >
    <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"
        android:background="#000000">

        <RelativeLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="5dp">

            <TextView xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/Label"
                    android:layout_width="fill_parent" 
                    android:layout_height="wrap_content" 
                    android:text="Credit Balance"
                    android:background = "#55000000"
                    android:textColor = "#FF0033"
            />

            <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content" 
                    **android:layout_alignParentBottom = "true"**/>
            <FrameLayout
                    android:id="@android:id/tabcontent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:padding="5dp" />
        </RelativeLayout>
    </TabHost>
</FrameLayout>

我使用以下代码在 4 个各自的选项卡中添加 4 个列表视图,

 tabHost.addTab(tabHost.newTabSpec(NEW_TAB).setIndicator(NEW)
            .setContent(new Intent(this, NEWActivity.class)));

请问有人可以提出解决方案吗?

谢谢

In my application I have a tab bar. It contains four tabs in which I am showing a list view. It was working fine, but now I need to shift the tab bar to the bottom of the screen. When I changed my code to show tab bar at the bottom of the view, list views are showing in full screen overlapping the tab bar as well.

Here is the sample code

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/mainlayout"
             android:layout_height="fill_parent" 
             android:layout_width="fill_parent"
             android:orientation="vertical" >
    <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"
        android:background="#000000">

        <RelativeLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="5dp">

            <TextView xmlns:android="http://schemas.android.com/apk/res/android"
                    android:id="@+id/Label"
                    android:layout_width="fill_parent" 
                    android:layout_height="wrap_content" 
                    android:text="Credit Balance"
                    android:background = "#55000000"
                    android:textColor = "#FF0033"
            />

            <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content" 
                    **android:layout_alignParentBottom = "true"**/>
            <FrameLayout
                    android:id="@android:id/tabcontent"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:padding="5dp" />
        </RelativeLayout>
    </TabHost>
</FrameLayout>

I am adding 4 list views in 4 respective tabs with the following code

 tabHost.addTab(tabHost.newTabSpec(NEW_TAB).setIndicator(NEW)
            .setContent(new Intent(this, NEWActivity.class)));

Please can anyone suggest a solution to this?

Thanks

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

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

发布评论

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

评论(1

街角卖回忆 2024-11-12 18:07:53

将此行添加

android:layout_above="@android:id/tabs"

到您的 FrameLayout 和

android:layout_alignParentBottom = "true"

TabWidget 中

add this

android:layout_above="@android:id/tabs"

line to your FrameLayout and with

android:layout_alignParentBottom = "true"

in TabWidget

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