在Android中更改SearchView后退按钮

时间:2018-02-15 05:30:30

标签: android button searchview

我有白色的操作栏,当我点击搜索视图按钮时,我可以获得搜索视图,但无法获取搜索视图下方的行并且无法看到后退按钮。我想更改搜索视图后退按钮的颜色/完整图标,我想获取搜索视图下方的行。我用Google搜索并尝试了很多不同的方法,但没有运气。我也尝试过更改工具栏样式,但没有运气。我也在活动和片段中使用搜索视图..

我尝试更改工具栏样式,如下所示

 <style name="ToolbarStyle" parent="@style/ThemeOverlay.AppCompat.ActionBar">
    <!-- Customize color of navigation drawer icon and back arrow -->
    <item name="colorControlNormal">@color/colorBlack</item>
    <item name="android:collapseIcon" tools:ignore="NewApi">@mipmap/filter_red</item>
</style>

任何帮助都会感激!

先谢谢

1 个答案:

答案 0 :(得分:3)

(i)您可以在app:collapseIcon中添加Toolbar属性。

<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:elevation="2dp"
            app:collapseIcon="@drawable/cancel"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

(ii)另一种方法是在AppBarLayout的帮助下以编程方式执行此操作。

AppBarLayout appBar =  findViewById(R.id.appBarLayout);
        appBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
            @Override
            public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
                for (int i = 0; i < toolbar.getChildCount(); i++) {
                    View view = toolbar.getChildAt(i);
                    if (view instanceof ImageButton) {
                        ImageButton btn = (ImageButton) view;
                        btn.setImageDrawable(getResources().getDrawable(R.drawable.cancel)); // Here we can change icon.
                    }
                }
            }
        });

布局如下:

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBarLayout"
    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="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:elevation="2dp"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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