gpt4 book ai didi

android - android中静态内容下部分布局的选项卡

转载 作者:行者123 更新时间:2023-11-30 03:08:21 25 4
gpt4 key购买 nike

我想制作如下图所示的布局。在顶部,有一些常见的小部件需要始终存在并且类似地位于底部。我只想要两个选项卡中间的选项卡,并且应该只控制这些选项卡下的部分。通用小部件独立于选项卡。

enter image description here

我尝试了很多方法来实现这一点。我可以在显示屏的顶部或底部找到标签,但不能在中间找到标签。选项卡根本不显示,但选项卡下的对象在同一显示中相互重叠。

请建议如何进行此布局。

最佳答案

您可以使用 ViewPager Indicator 库。

https://github.com/JakeWharton/Android-ViewPagerIndicator下载

然后让你的布局类似于

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/another_bg"
android:orientation="vertical" >

<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:src="@drawable/ic_launcher" />

<com.viewpagerindicator.TabPageIndicator
android:id="@+id/main_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<android.support.v4.view.ViewPager
android:id="@+id/main_pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_marginTop="0dp"
android:layout_weight="1" />

</LinearLayout>

你可以把标签放在任何你想要的地方。

关于android - android中静态内容下部分布局的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21399282/

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