Android:最小化SearchView中的空间

时间:2017-08-08 16:25:08

标签: android searchview

我试着了解后箭头和searchview组件之间的空间。我使用单独的activity进行工具提示搜索。

我尝试将填充0添加到搜索视图但没有成功。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/search_toolbar_color"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            android:padding="0dp"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar" />

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

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


        <android.support.v7.widget.RecyclerView
            android:id="@+id/search_results"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="3dp"
            android:visibility="gone" />

    </RelativeLayout>
</LinearLayout>

我创建了自定义搜索视图以满足我的要求,在输入搜索activity时打开键盘,删除搜索图标并更改color计划

  @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        getMenuInflater().inflate(R.menu.search_menu, menu);
        MenuItem searchItem = menu.findItem(R.id.action_search);

        SearchManager searchManager = (SearchManager) this.getSystemService(Context.SEARCH_SERVICE);
        if (searchItem != null)
        {
            _searchView = (SearchView) searchItem.getActionView();
        }

        if (_searchView != null)
        {
            _searchView.setSearchableInfo(searchManager.getSearchableInfo(this.getComponentName()));
            _searchView.setQueryHint(getString(R.string.action_search));
            _searchView.setIconifiedByDefault(false);
            final SearchView finalSearchView = _searchView;
            _searchView.setOnQueryTextFocusChangeListener(new View.OnFocusChangeListener()
            {
                @Override
                public void onFocusChange(View view, boolean hasFocus)
                {
                    if (hasFocus)
                    {
                        //                      showInputMethod(view);
                        finalSearchView.onActionViewExpanded();
                    }
                }
            });


            //remove the icon in searchView
            ImageView searchViewIcon = (ImageView) _searchView.findViewById(android.support.v7.appcompat.R.id.search_mag_icon);
            ViewGroup linearLayoutSearchView = (ViewGroup) searchViewIcon.getParent();
            linearLayoutSearchView.removeView(searchViewIcon);

            _searchView.setOnQueryTextListener(this);
            _searchView.requestFocus();

        }
        return true;
    }

too big space

更新

在使用视图层次结构检查工具栏布局后,我意识到后箭头图像与搜索视图之间存在某种appcompat textview。不幸的是,我仍然无法知道如何从那里删除它。

enter image description here

2 个答案:

答案 0 :(得分:0)

您可以在Toolbar中设置这些属性以最小化额外的空间(可以为边距设置负值):

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    xmlns:app="schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="@color/search_toolbar_color"
    app:popupTheme="@style/AppTheme.PopupOverlay"
    app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    android:contentInsetLeft="0dp"
    android:contentInsetStart="0dp"
    app:contentInsetLeft="0dp"
    app:contentInsetStart="0dp"
    android:contentInsetRight="0dp"
    android:contentInsetEnd="0dp"
    app:contentInsetRight="0dp"
    app:contentInsetEnd="0dp" />

原始答案:https://stackoverflow.com/a/32320632/8405762

或者,您可以使用带有负边距的SearchBar组件:

<android.support.v7.widget.SearchView
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingLeft="-16dp"
  android:paddingStart="-16dp"
  app:iconifiedByDefault="false"
  app:searchIcon="@null"
  app:queryHint="Search"
  app:theme="@style/ThemeOverlay.AppCompat.Dark" />

SearchBar documentation

答案 1 :(得分:-1)

我找到了一个对我有用的解决方案,我添加了这一行

_searchView.setMaxWidth(Integer.MAX_VALUE); 
在菜单布局膨胀后,在onCreateOptionsMenu中

你可以在这里阅读更多[link] [1]

我还使用

从操作栏中删除了标题
getSupportActionBar().setDisplayShowTitleEnabled(false);

(*)箭头和搜索视图之间仍然有一个空格,但它更小,我可以忍受。

(**)GuilhermeFGL,不幸的是你提供的解决方案对我没有用,也许是因为我正在运行牛轧糖。但是你的帮助。