在API 8中搜索视图

时间:2013-08-26 12:49:41

标签: android api searchview

当我将SearchView放入activity_main.xml

<SearchView
    android:id="@+id/search"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" >
</SearchView>

这是错误的:

  

查看需要API级别11(当前最小值为8)

有没有办法在API8中支持SearchView?

PS。当我遇到与SimpleCursorAdapter相同的问题时,我已经解决了这个问题:

  

import android.support.v4.widget.SimpleCursorAdapter;

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用ActionBarSherlock或新的AppCompat-v7 (推荐用于新项目)库。

将任一库添加到项目中(如果使用AppCompat,请确保遵循使用资源添加库部分),然后使用:

import com.actionbarsherlock.widget.SearchView;

或:

import android.support.v7.widget.SearchView;

分别。