編輯:Android開發實例
上面是通過按下實體鍵盤上的搜索按鈕彈出的一個搜索對話框,當然搜索關鍵詞提示是少不了的。如何實現呢?慢慢來!呵呵。
一、配置搜索描述文件
在res中的xml文件加創建sreachable.xml,內容如下:
java代碼:
<searchable xmlns:android="http://schemas.android.com/apk/res/android" android:label="@string/search_label"
android:hint="@string/search_hint" android:searchSettingsDescription="@string/settings_description">
</searchable>
二、創建SearchableMusicActivity.java 至少需要實現onCreate方法顯示出來吧。
三、配置AndroidManifest.xml
java代碼:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.halzhang.android.search" android:versionCode="1"
android:versionName="1.0">
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<activity android:name=".SearchableMusicActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<!-- 配置action -->
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<!-- 指定搜索的配置文件 -->
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<meta-data
android:name="android.app.default_searchable"
android:value=".SearchableMusicActivity" />
Android已經為我們創建了一個默認的,我們只需要繼承 SearchRecentSuggestionProvider 就稍做修改就可以了。
java代碼:
import android.content.SearchRecentSuggestionsProvider;
/**
* 搜索提示
*
* @author Hanguo 7:
* @version 2011-1-5上午11:51:39
*/
public class SearchSuggestionsProvider extends SearchRecentSuggestionsProvider {
//記住這個哦
public final static String AUTHORITY = "searchprovider";
public final static int MODE = DATABASE_MODE_QUERIES;
public SearchSuggestionsProvider() {
setupSuggestions(AUTHORITY, MODE);
}
}
2.配置searchable.xml
java代碼:
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android" android:label="@string/search_label"
android:hint="@string/search_hint" android:searchSettingsDescription="@string/search_settings_description" android:searchSuggestAuthority="searchprovider" android:searchSuggestIntentAction="android.intent.action.SEARCH" android:searchSuggestThreshold="1"
android:includeInGlobalSearch="true"
android:searchSuggestSelection=" ?" >
</searchable>
Android提供了許多方法來控制播放的音頻/視頻文件和流。其中該方法是通過一類稱為MediaPlayer。Android是提供MediaPlayer類訪問內置的媒體播放
JSON代表JavaScript對象符號。它是一個獨立的數據交換格式,是XML的最佳替代品。本章介紹了如何解析JSON文件,並從中提取所需的信息。Android提供了四個
Android提供了許多方法來控制播放的音頻/視頻文件和流。其中該方法是通過一類稱為MediaPlayer。Android是提供MediaPlayer類訪問內置的媒體播放
Android應用程序可以在許多不同地區的許多設備上運行。為了使應用程序更具交互性,應用程序應該處理以適合應用程序將要使用的語言環境方面的文字,數字,文件等。在本章中,我