更改搜索查看后退图标?

时间:2015-07-17 13:45:43

标签: android

我正在使用AppCompat操作栏,我想更改我在操作栏中使用的searchview的后退图标。我搜索了但是我找不到解决方案。

我尝试过设置风格的图标:

<item name="homeAsUpIndicator">@drawable/myBackButton</item>

但我希望在用户选择搜索视图时以编程方式设置另一个。 关于我如何做到的任何想法?

3 个答案:

答案 0 :(得分:4)

自定义SearchView&#34; up&#34;图标,您可以使用样式属性:

collapseIcon="@drawable/ic_discard_icon"
工具栏布局中的

<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="wrap_content"
        app:collapseIcon="@drawable/ic_discard_icon"/>

或者您可以将此属性移动到工具栏样式中。如你所愿。

答案 1 :(得分:0)

您可以像这样更改后退图标的背景

Toolbar toolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initToolbar();
}

private void initToolbar() {
    toolbar = (Toolbar) findViewById(R.id.tbMaster);
    setSupportActionBar(toolbar);
    if (toolbar != null) {
        toolbar.setBackgroundColor(getResources().getColor(R.color.base_color));
        getSupportActionBar().setTitle("Title");
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setHomeAsUpIndicator(R.drawable.image);
    }
}

答案 2 :(得分:0)

试试这段代码:

if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
    // get the parent view of home (app icon) imageview
    ViewGroup home = (ViewGroup) findViewById(android.R.id.home).getParent();
    // get the first child (up imageview)
    ( (ImageView) home.getChildAt(0) )
        // change the icon according to your needs
        .setImageDrawable(getResources().getDrawable(R.drawable.custom_icon_up));
} else {
    // get the up imageview directly with R.id.up
    ( (ImageView) findViewById(R.id.up) )
        .setImageDrawable(getResources().getDrawable(R.drawable.custom_icon_up));
}