gpt4 book ai didi

android - 标签栏和抽屉导航对齐

转载 作者:可可西里 更新时间:2023-11-01 19:07:25 24 4
gpt4 key购买 nike

我正在尝试制作一个应用程序,其中选项卡栏、抽屉导航和搜索都位于工具栏下方,但是当我尝试在选项卡栏中执行此操作时,页面标题会分开 this is comming我还想在其中显示其他 fragment 的标题布局代码

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Boss.Main2Activity">

<android.support.design.widget.CoordinatorLayout

android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/bg_img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" />


<com.antonyt.infiniteviewpager.InfiniteViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent">

<me.alexrs.fontpagertitlestrip.lib.FontPagerTitleStrip
android:id="@+id/titlestrip"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_marginEnd="50dp"
android:layout_marginStart="50dp"
android:background="@color/material_fragment_top"

app:fontFamily="@font/font"

app:theme="@style/AppTheme.PopupOverlay" />

</com.antonyt.infiniteviewpager.InfiniteViewPager>


<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="50dp"

app:theme="@style/CustomActionBar" />

<include layout="@layout/content_main2" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

我希望布局显示抽屉导航和选项卡栏和搜索栏图标,以及抽屉导航和搜索之间的页面标题,因为您可以看到它分离得太多了。我正在尝试使工具栏像 Black Player App

最佳答案

现在我在那个 Black Player 应用程序中看到的是,您想要完全相同的标题是自定义的。从我的角度来看,导航按钮不是默认按钮,它是点击抽屉上的图像,可以打开和关闭。因此,在下面给出的 XML 中,我只是创建了一个自定义顶部栏,在这种情况下,它是一个 RelativeLayout,如果您看到它具有操作栏的默认高度。现在您只需要在 java 文件中做一件事,您需要从那里隐藏工具栏,以便自定义 topBar 自动出现在它的顶部。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.bodaciousithub.myapplication.Main5Activity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:src="@drawable/ic_menu_black_24dp"
android:layout_centerVertical="true"/>

<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@id/imageView"
android:background="?attr/colorPrimary"
android:layout_toLeftOf="@id/imageView2"
app:popupTheme="@style/AppTheme.PopupOverlay"
android:layout_toEndOf="@id/imageView"
android:layout_toStartOf="@id/imageView2"
app:tabMode="scrollable">
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tab1"/>
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tab2"/>
<android.support.design.widget.TabItem
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tab3"/>

</android.support.design.widget.TabLayout>

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:src="@drawable/ic_search_black_24dp"
android:layout_alignParentEnd="true"
android:layout_marginRight="8dp"
android:layout_alignParentRight="true" />

</RelativeLayout>


<include layout="@layout/content_main5" />

</android.support.design.widget.CoordinatorLayout>

最后的 include 布局语句是添加显示内容的主布局。 AppBar Layout 是 Navigation View 中的默认布局,所以在 java 文件中我隐藏了它。您可以编写 getSupportActionBar().hide()getActionBar().hide()

下面是我制作的布局的屏幕截图。

Screen Image

希望对您有所帮助!

关于android - 标签栏和抽屉导航对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50659466/

24 4 0