gpt4 book ai didi

android - SearchView 未出现在工具栏中 - Android Lollipop

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:37:26 24 4
gpt4 key购买 nike

我在以下 Activity 中有此工具栏:

    <android.support.v7.widget.Toolbar
android:id="@+id/toolbar_select_currency"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

此外,菜单声明于:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@+id/search"
android:title="@string/search_currency"
android:icon="@drawable/ic_action_search"
android:showAsAction="collapseActionView|ifRoom"
android:actionViewClass="android.support.v7.widget.SearchView"/>

</menu>

在我调用的 Activity 中:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.currency_selector_options_menu, menu);

return true;
}

private void initActionBar() {
// Initialize the Toolbar( this is the new ActionBar in Lollipop)
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_select_currency);
setSupportActionBar(toolbar);
getSupportActionBar().setTitle(getString(R.string.select_currency));
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}

现在我的问题是我没有像普通 ActionBar 那样获得 SearchView,我得到的是普通菜单。如何获得正常的 SearchView ?

最佳答案

使用您的应用命名空间:

xmlns:myapp="http://schemas.android.com/apk/res-auto"

myapp:showAsAction="always"

解释:由于您使用的是旧 android 版本的支持库并且它未包含在 sdk 中,因此 android 命名空间不包含 showAsAction 属性,该属性包含在您链接到您的项目的支持库,因此要达到您必须使用您的应用命名空间的属性

关于android - SearchView 未出现在工具栏中 - Android Lollipop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27227219/

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