2016-03-06 66 views
0

我想this code實施搜尋活動,但我得到這個錯誤,我不知道如何解決它:方法setSuggestionsAdapter不能應用於給定類型

Error:(326, 19) error: method setSuggestionsAdapter in class SearchView cannot be applied to given types; 
required: CursorAdapter 
found: SearchSuggestionsAdapter 
reason: actual argument SearchSuggestionsAdapter cannot be converted to CursorAdapter by method invocation conversion 

回答

2

我的解決方法是導入搜索查看如import android.widget.SearchView; 如果你import android.support.v7.widget.SearchView;所以它可能是錯誤的原因。

試試這個工作。 謝謝。

相關問題