android中Search之Creating a Searchable Configuration

 创建一个名为searchable.xml的文件,必须保存在res/xml目录下。

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
   
android:label="@string/app_label"
   
android:hint="@string/search_hint" >
</searchable>

其中android:label为必要属性。

你可能感兴趣的:(android,search,encoding)