[Xamarin SearchBar删除Android上的取消按钮

问题描述 投票:0回答:1

如何在Android的搜索栏中删除取消按钮?

enter image description here

xamarin.android
1个回答
0
投票

一种简单的方法可能是:

<android.support.v7.widget.SearchView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/searchView"
    app:closeIcon="@null"/>
© www.soinside.com 2019 - 2024. All rights reserved.