gpt4 book ai didi

android - 工具栏下的 ViewPager 不工作

转载 作者:行者123 更新时间:2023-11-29 00:06:59 27 4
gpt4 key购买 nike

我正在尝试在我的 ToolBar 下添加一个 ViewPager 问题是 ViewPager 位于布局的顶部,即使如果我把 layout_below="@+id/toolBar 这是我的 ToolBar

的 id

这是我的activiy_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerMainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/containerView">

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/actionBarSize"
android:background="?attr/colorPrimary"
android:id="@+id/toolBar"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
/>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolBar"
android:background="?attr/colorPrimary"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@id/tab_layout"/>

</FrameLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="290dp"
android:layout_height="match_parent"
android:id="@+id/recyclerView"
android:scrollbars="vertical"
android:background="#FFFFFF"
android:layout_gravity="left"
/>
</android.support.v4.widget.DrawerLayout>

注意:在此布局上我还添加了 NavigationDrawer

这是输出:

enter image description here

我做错了什么?

我创建了这个样式

<style name="tabs" parent ="ThemeOverlay.AppCompat.Dark.ActionBar">            
<item name="tabSelectedTextColor">@color/blue</item>
</style>

现在我没有看到“阴影”,因为我也删除了这一行 android:background="?attr/colorPrimary" 但现在我看到了标签 white 我只看到选择器行。

最佳答案

What I'm doing wrong?

这两个项目的父级是 <FrameLayout ,后者将其子级堆叠在另一个之上。你必须使用 <RelativeLayout

关于android - 工具栏下的 ViewPager 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33156747/

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