Android:如何在ActionBar上为SearchView返回EditText行?

时间:2017-01-27 02:56:49

标签: android android-edittext searchview

我正在AppBar上设置SearchView,并且能够成功设置搜索图标:

enter image description here

单击“搜索”图标时,图标会按预期折叠,我会收到:

enter image description here

我希望看到像这样的传统EditText行:

enter image description here

然后添加一个TextView来获取它:

enter image description here

我在xml文件中尝试了很多设置而没有运气,并尝试使用此示例设置自定义视图以显示TextView和传统的EditText行: https://www.sitepoint.com/better-user-interfaces-android-action-bar/ 一切都没有运气。无法覆盖默认值与我正在使用的主题有关吗?或者可能是由于默认来自' app:actionViewClass =" android.support.v7.widget.SearchView"'在布局? 我在这里错过了什么?

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="AppTheme" parent="AppTheme.Base"/>

<!-- Disable the theme-provided Action Bar.-->

<style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar" >

    <!-- Next two rows tell Android we're using the Toolbar instead of the Action Bar-->
    <item name="android:windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="android:textColorSecondary">#C0C0C0</item>
    <item name="android:windowDisablePreview">true</item>
    <item name="android:textColorHint">#c5c5c5</item>

</style>
</resources>

menu.xml
...
<menu
    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"
    tools:context=".Activity">

<item android:id="@+id/action_search"
    android:title="@string/search_title"
    android:icon="@drawable/ic_action_search"
    android:iconifiedByDefault="true"
    app:actionViewClass="android.support.v7.widget.SearchView"
    app:showAsAction="always|collapseActionView"  />    

0 个答案:

没有答案