gpt4 book ai didi

java - 如何在 API <= 10 中使用 SearchView?在 XML 文件中

转载 作者:太空宇宙 更新时间:2023-11-04 13:36:45 25 4
gpt4 key购买 nike

所以我已经下载了支持库v7:22.2.1。我正在尝试在 XML 文件中创建一个简单的搜索 View ,但我当然收到错误 View require API level 11 (current min is 10): 。我在网上读到,您需要使用支持库才能使用搜索 View ,其中最小 API 设置为 11 以下。我已下载它并在 build.gradle 文件中进行设置。

我不明白如何在 XML 文件中实现支持库以便使用 SearchView 小部件。

最佳答案

如果您看到 http://developer.android.com/reference/android/widget/SearchView.html您会注意到,实际上需要 API 级别 11。请参阅此 answer了解更多详情。

您必须使用支持 v7 库:https://developer.android.com/reference/android/support/v7/widget/SearchView.html

XML 的外观如下:

<android.support.v7.widget.SearchView
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
.... more attributes
/>

关于java - 如何在 API <= 10 中使用 SearchView?在 XML 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31619637/

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