使用SearchView android studio

时间:2016-05-29 20:25:26

标签: java android android-toolbar searchview

我尝试在应用中的工具栏中添加一个简单的SearchView。它所做的一切工作都很好。布局。

有这个"空间"在NavigationDrawer图标和SearchView之间。 如果我设置了标题,则该空格将填充该字符串,否则为空。

空字符串:

enter image description here

标题中包含字符串:

enter image description here

如何删除烦人的空白区域?

修改

我使用Android Studio中的NavigationDrawer示例作为基本代码

main.xml中

    <menu 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"
    tools:context=".MainActivity"
    >

    <item
        android:id="@+id/action_search"
        android:icon="@android:drawable/ic_menu_search"
        android:title="Search"
        app:actionViewClass="android.support.v7.widget.SearchView"
        app:showAsAction="always" />

    </menu>

app_bar_main.xml

<?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"
    android:fitsSystemWindows="true"
    tools:context="ga.musicforyou.musicforyou.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
       >

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            app:contentInsetEnd="0dp"
            app:contentInsetStart="0dp"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            />

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


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

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        app:theme="@style/ThemeOverlay.AppCompat.Dark"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:itemTextColor="#FFF"
        app:itemIconTint="#FFF"

        app:menu="@menu/activity_main_drawer" />

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

2 个答案:

答案 0 :(得分:6)

工具栏从FrameLayout扩展,您可以在其中放置视图。像这样:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primary_color">

<SearchView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

</android.support.v7.widget.Toolbar>

编辑:您将其作为菜单放在布局中。它始终位于工具栏的右侧,因为它是一个菜单。如果你想更直接地控制工具栏中的视图,就像我给你看的一样把它放在那里。

答案 1 :(得分:1)

我在代码中设置了actionBar.setDisplayHomeAsUpEnabled(true)。因此,仅在工具栏中添加SearchView对我不起作用,导航返回和SearchView之间有一些额外的空间。 Toolbar中没有标题。所以我按照这个定制整个工具栏:

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:layout_alignParentTop="true" // If parent layout is RelativeLayout
        android:background="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:contentInsetLeft="0dp" // This is important,
        app:contentInsetStart="0dp" // Otherwise there will be extra space on Left Side
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/ivNavBack"
                android:layout_width="56dp"
                android:layout_height="56dp"
                android:background="@drawable/your_drawable" // Custom background (optional), if you want to have a press effect
                android:padding="16dp"
                android:src="@drawable/ic_nav_back" /> // You can set icon of your choice here

            <android.support.v7.widget.SearchView
                android:id="@+id/searchView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:queryHint="@string/search_view_hint"
                app:queryHint="@string/search_view_hint" />

        </LinearLayout>

    </android.support.v7.widget.Toolbar>

...&安培;在你的活动中:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
SearchView  searchView = (SearchView) toolbar.findViewById(R.id.searchView);
searchView.onActionViewExpanded(); // Expands searchView by default
// If this is not set, then you will see default search icon and you have to click it to expand SearchView.

现在无需在代码中设置actionBar.setDisplayHomeAsUpEnabled(true)。只需处理ivNavBack的点击事件即可。

enter image description here