gpt4 book ai didi

Android 默认的 SearchView 图标有一个奇怪的边框

转载 作者:行者123 更新时间:2023-11-30 00:32:58 24 4
gpt4 key购买 nike

我的顶部栏有这个菜单:

<?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"
tools:context="com.bma.wol.MainActivity">

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_menu_edit" />

<include layout="@layout/content_main" />

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:weightSum="1"
app:popupTheme="@style/AppTheme.PopupOverlay">

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/app_name"
app:srcCompat="@drawable/dw_logo" />

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

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

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

然后我这样显示

final SearchView searchView = (SearchView) MenuItemCompat.getActionView(menu.findItem(R.id.action_search));
SearchManager searchManager = (SearchManager) getSystemService(SEARCH_SERVICE);
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));

但它显示如下:
Top Bar

事实上,我的应用程序中使用的所有默认图标(@android:drawable)都是这样显示的,我不明白为什么其他应用程序不显示奇怪的阴影/边框但是我的有

最佳答案

这是解决方案。我苦苦挣扎了几个小时,然后我发现了问题所在。

打开菜单 xml 文件并找到指定图标的行

(我自己项目的例子)

<item
android:id="@+id/item_search"
android:icon="@android:drawable/ic_search"
android:title="@string/search"
app:showAsAction="always" />

问题是由图标值引起的。改变"@android:drawable/ic_search""@drawable/ic_search"

所以它应该是这样的

<item
android:id="@+id/item_search"
android:icon="@drawable/ic_search"
android:title="@string/search"
app:showAsAction="always" />

现在它应该像您指定的那样工作。

关于Android 默认的 SearchView 图标有一个奇怪的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43951585/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com