2016-07-25 20 views
9

Я заметил пару дней назад, что ввод текста в моем SearchView не отображается. Возможно, эта проблема началась более давно, и я этого не заметил, но я знаю, что все работает хорошо, когда я впервые настроил функцию поиска.Ввод текста в SearchView не отображается

Вот скриншот (я уже вошел текст, и вы можете видеть, что это не показано):

enter image description here

Я уже пытался изменить цвет текста на SearchView, с this SO question, и я также попытался изменить цвет текста в файле XML с возможностью поиска. После того, как я обнаружил, что ни один из них не работает, я расстегнула мои изменения, так что вы можете увидеть код, который я в настоящее время есть ниже:

MainActivity.java

@Override 
public boolean onCreateOptionsMenu(Menu) { 

    ... 

    // Associate searchable configuration with the SearchView 
    SearchManager searchManager = (SearchManager) getSystemService(SEARCH_SERVICE); 
    MenuItem searchMenuItem = menu.findItem(R.id.action_search); 
    SearchView searchView = (SearchView) searchMenuItem.getActionView(); 
    searchView.setSearchableInfo(searchManager.getSearchableInfo(new ComponentName(this, SearchResultsActivity.class))); 
    // Note: getSearchableInfo(getComponentName()) will not work on all flavours 
    // because of a difference in app IDs 

} 

Заметьте, что я использовал new ComponentName(...) вместо getSearchableInfo(getComponentName()), поскольку я использую разные имена пакетов в разных вариантах.

Активность, на которой отображается SearchView. Результаты показаны в другом виде.

searchable.xml

<searchable xmlns:android="http://schemas.android.com/apk/res/android" 
    android:label="@string/app_name" 
    android:hint="@string/search_hint" /> 

AndroidManifest.xml

... 

    <activity 
     android:name=".ui.MainActivity" 
     android:label="@string/title_activity_main" 
     android:theme="@style/AppTheme"> 
     <meta-data 
      android:name="android.app.default_searchable" 
      android:value=".SearchResultsActivity" /> 
    </activity> 

    ... 

    <activity 
     android:name=".ui.filter.SearchResultsActivity" 
     android:label="@string/title_activity_search_results" 
     android:parentActivityName=".ui.MainActivity" 
     android:theme="@style/AppTheme.Search"> 
     <meta-data 
      android:name="android.support.PARENT_ACTIVITY" 
      android:value="com.companyname.appname.ui.MainActivity" /> 

     <intent-filter> 
      <action android:name="android.intent.action.SEARCH" /> 
     </intent-filter> 

     <meta-data 
      android:name="android.app.searchable" 
      android:resource="@xml/searchable" /> 
    </activity> 

    ... 

styles.xml (активность, содержащая в SearchView использует AppTheme.NavDrawer)

... 

<style name="Base.AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 
    <item name="android:windowNoTitle">true</item> 
    <item name="windowActionBar">false</item> 
    <item name="colorButtonNormal">?colorAccent</item> 
</style> 

<style name="AppTheme" parent="Base.AppTheme"> 
    <item name="colorPrimary">@color/theme_primary</item> 
    <item name="colorPrimaryDark">@color/theme_primary_dark</item> 
    <item name="colorAccent">@color/theme_accent</item> 
</style> 

<style name="AppTheme.NavDrawer"> 
    <item name="android:windowBackground">@color/window_background</item> 
</style> 

... 

v21/styles.xml

<style name="AppTheme.NavDrawer"> 
    <item name="android:windowBackground">@color/window_background</item> 
    <item name="android:windowDrawsSystemBarBackgrounds">true</item> 
    <item name="android:statusBarColor">@android:color/transparent</item> 
</style> 

.... 

activity_main_filterable.xml (макет, который использует моя деятельность)

<android.support.v4.widget.DrawerLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/drawerLayout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" > 

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

    <include layout="@layout/navdrawer" 
    android:id="@+id/navigationView" /> 

    <include layout="@layout/filter_drawer" 
     android:id="@+id/filter_drawer" /> 

</android.support.v4.widget.DrawerLayout> 

activity_main_content.xml

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <android.support.design.widget.CoordinatorLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_above="@+id/adView"> 
     <android.support.design.widget.AppBarLayout 
      android:fitsSystemWindows="true" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" > 
      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       style="@style/AppTheme.Toolbar" 
       android:layout_height="wrap_content" 
       android:layout_width="match_parent" 
       app:layout_scrollFlags="scroll|enterAlways"/> 
      <include layout="@layout/blank" /> <!-- This is to prevent bugs --> 
     </android.support.design.widget.AppBarLayout> 

     <include layout="@layout/fragment_misc_no_results" 
     android:id="@+id/fragment_no_results"/> 

     <android.support.v7.widget.RecyclerView 
      android:id="@+id/recyclerView" 
      style="@style/AppTheme.RecyclerView.StandardList" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 
    </android.support.design.widget.CoordinatorLayout> 

    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     ads:adSize="SMART_BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id" /> 
</RelativeLayout> 

Любые идеи о том, что может произойти или как я должен его решить?

+0

Можете ли вы опубликовать свой style.xml? –

+0

@SaeedEntezari См. Мой обновленный мой вопрос :) –

+0

можете ли вы разместить свой макет? – MidasLefko

ответ

11

У меня была такая же проблема, и для меня это было потому, что я установил высоту панели инструментов wrap_content.Попробуйте дать ему размер, как это:

<android.support.v7.widget.Toolbar 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    app:theme="@style/ToolbarTheme" 
    app:popupTheme="@style/AppTheme.PopupOverlay" 
    app:layout_scrollFlags="scroll|enterAlways" 
    /> 
+0

Спасибо - это сработало для меня. Знаете ли вы, почему? –

+3

Не знаю. Я часами экспериментировал, и это единственное, что сработало. – MidasLefko

+0

У меня все еще нет конкретной причины, почему это происходит, но расположение координатора может быть потенциальным виновником, вызывающим это странное поведение. Если я использую простой линейный макет, SearchView отлично работает. –

5

Это код, который я использую для моего последнего проекта, и это работа хорошо:

Сначала определите search_menu.xml (убедитесь, что использование андроида supportV7):

<?xml version="1.0" encoding="utf-8"?> 
<menu xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto"> 
    <item 
     android:id="@+id/search" 
     android:icon="@drawable/ic_search_gray" 
     android:title="@string/action_search" 
     app:actionViewClass="android.support.v7.widget.SearchView" 
     app:showAsAction="always" /> 
</menu> 

Затем определите в вашем onCreateOptionMenu вашей деятельности:

MenuInflater inflater = getMenuInflater(); 
inflater.inflate(R.menu.menu_search, menu); 
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE); 

SearchView searchView = (SearchView) MenuItemCompat.getActionView(menu.findItem(R.id.search)); 
searchView.setSearchableInfo(searchManager.getSearchableInfo(new ComponentName(getApplicationContext(), SearchActivity.class))); 
searchView.setMaxWidth(Integer.MAX_VALUE); 
MenuItemCompat.expandActionView(menu.findItem(R.id.search)); 
searchView.setIconifiedByDefault(true); 
searchView.setIconified(false); 

Кроме того, моя панель инструментов:

<android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@color/gray_lightest" 
     android:minHeight="?attr/actionBarSize" 
     android:theme="@style/ThemeOverlay.AppCompat.ActionBar" 
     app:contentInsetStartWithNavigation="0dp" /> 

Добавить мета-данные на AndroidManifest.xml:

<activity 
     android:name=".ui.activity.SearchActivity" 
     android:launchMode="singleTop"> 
     <intent-filter> 
      <action android:name="android.intent.action.SEARCH" /> 
     </intent-filter> 
     <meta-data 
      android:name="android.app.searchable" 
      android:resource="@xml/searchable" 
      android:value=".ui.activity.SearchActivity" /> 
    </activity> 

Конечный результат:

enter image description here

+0

Большое спасибо за ваш ответ, Амир, однако я нашел решение Мидаса работать для меня. –

+0

может быть полезно для дальнейшего использования;) – Amir

Смежные вопросы