3

我的应用程序目前是使用单活动方法实现的(使用具有一个主要活动和多个片段的导航架构组件)。我目前正在使用带抽屉的工具栏。

我的应用目前看起来像这样:

在此处输入图像描述

然而,在现代谷歌应用程序(谷歌照片、gmail 等)中,谷歌已经实现了一种新的导航方式,使用搜索字段并在其中实现抽屉,如下所示:

在此处输入图像描述

我想用搜索栏和抽屉菜单替换这个工具栏,就像谷歌应用程序一样。

有人可以帮助我提供一些关于如何实现这一目标的代码吗?

我的主要活动如下:

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

<androidx.drawerlayout.widget.DrawerLayout
    android:id="@+id/Drawer_Main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ui.main.main.MainActivity">

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">

        <com.google.android.material.appbar.MaterialToolbar
            android:id="@+id/Toolbar_Main"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary">

            <TextView
                android:id="@+id/Toolbar_Title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
            android:text="@string/app_name"
                style="@style/Locky.Toolbar.TitleText" />

        </com.google.android.material.appbar.MaterialToolbar>

        <androidx.core.widget.NestedScrollView
            android:id="@+id/Nested_Scroll"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="?attr/actionBarSize"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <fragment
                android:id="@+id/Navigation_Host"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:defaultNavHost="true"
                app:navGraph="@navigation/navigation_drawer_main" />

        </androidx.core.widget.NestedScrollView>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:orientation="vertical">

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/FAB_Account"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginEnd="16dp"
            android:layout_marginStart="16dp"
            android:visibility="invisible"
            app:srcCompat="@drawable/ic_account"
            style="@style/Locky.FloatingActionButton.Mini" />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/FAB_Card"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginEnd="16dp"
            android:layout_marginStart="16dp"
            android:visibility="invisible"
            app:srcCompat="@drawable/ic_credit_card"
            style="@style/Locky.FloatingActionButton.Mini" />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/FAB_Add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="@dimen/fab_margin"
            android:layout_marginEnd="@dimen/fab_margin"
            android:layout_marginBottom="@dimen/fab_margin"
            app:srcCompat="@drawable/ic_add"
            style="@style/Locky.FloatingActionButton.Normal"/>

    </LinearLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/Navigation_View"
        android:layout_width="280dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:clipToPadding="false"
        app:itemTextAppearance="@style/Locky.TextAppearance.Drawer.Item"
        app:menu="@menu/menu_drawer_main"
        app:headerLayout="@layout/drawer_header"
        style="@style/Locky.Widget.Custom.NavigationView" />

</androidx.drawerlayout.widget.DrawerLayout>

</layout>

有人可以用一些代码指导我如何实现这种搜索栏吗?

4

2 回答 2

3

如果您仍在寻找一种使用应用程序抽屉图标实现 gmail 样式搜索栏的方法,请使用工具栏,只需添加导航图标并在其中包装一个 editText:

<androidx.appcompat.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:navigationIcon="@drawable/ic_menu">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</androidx.appcompat.widget.Toolbar>

然后在activity中设置工具栏:

val toolbar: Toolbar = findViewById(R.id.toolbar)
setSupportActionBar(toolbar)

并实现 onOptionsItemSelect 监听器:

override fun onOptionsItemSelected(item: MenuItem): Boolean {
    // do desired stuff here
    return super.onOptionsItemSelected(item)
}

如果您还希望具有浮动样式和消失行为,请将工具栏包装在 appBarLayout 中并设置 app:layout_scrollFlags="scroll|enterAlways|snap":

<com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="24dp"
    android:layout_marginTop="2dp"
    android:background="@android:color/transparent">
    app:elevation="0dp">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:elevation="4dp"
        app:navigationIcon="@drawable/ic_menu"
        app:contentInsetStartWithNavigation="0dp"
        app:layout_scrollFlags="scroll|enterAlways|snap">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"/>
</androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.AppBarLayout>

以下模仿风格和行为的细节值得一提:

应用程序栏布局

  1. 水平边距,让栏不覆盖整个顶部
  2. 背景设置为圆角矩形
  3. 边距顶部有一点空间
  4. 高度为 0dp,因此 appBarLayout 没有阴影

工具栏

  1. app:contentInsetStartWithNavigation="0dp",否则icon和editText的边距太大

编辑文本

  1. 背景透明所以下划线会消失

编辑:差点忘了!非常重要的一点:父布局必须是 CoordinatorLayout,否则在 recyclerview 内部滚动不会有任何反应 edit2:将 appbar 布局的高度更改为 0dp,因此不会有任何阴影

于 2020-12-30T10:43:53.260 回答
2

我无法告诉您如何设计该工具栏,但该项目可能会帮助您处理工具栏的后退按钮和带有抽屉布局的主页按钮。

https://github.com/furkanaskin/Weatherapp/blob/master/app/src/main/java/com/faskn/app/weatherapp/ui/main/MainActivity.kt

于 2020-04-20T15:57:06.243 回答