亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

android中的search dialog

系統(tǒng) 2999 0
如果你要在你的應(yīng)用程序中實(shí)現(xiàn)搜索功能,android中為用戶提供兩種搜索的特性:
一種是search dialog,另一種是search widget.
由于search widget要在3.0以上的版本才能使用。這里只講search dialog
search dialog是由android系統(tǒng)控制的。需要由用戶去激活它。并且搜索框只出現(xiàn)在activity的最頂部。當(dāng)提交查詢的數(shù)據(jù)時(shí),系統(tǒng)會(huì)轉(zhuǎn)發(fā)給一個(gè)activity進(jìn)行處理。用戶也可以保存最近查詢的數(shù)據(jù)。這里講一下基本的配置。
1.新建一個(gè)位于res/xml下的一個(gè)searchable.xml的配置文件
    
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
	<!-- label為搜索框上方的文本,hint搜索框里面的提示文本  -->
	android:label="@string/search_label"
	android:hint="@string/search_hint"
	android:icon="@drawable/search32"
	android:searchMode="showSearchLabelAsBadge"
	
	<!-- 中間是語(yǔ)音搜索配置(看不懂....) -->
	android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"
	android:voiceLanguageModel="free_form"
	android:voicePromptText="Invoke Search"
	<!-- 這里的值必須SearchSuggestionSampleProvider.AUTHORITY相同,后面講 -->
	android:searchSuggestAuthority="SuggestionProvider"	
	android:searchSuggestSelection=" ? ">    
</searchable>

  


2.新建一個(gè)activity:SearchInvoke.java。此activity的作用是用來(lái)啟動(dòng)search dialog并把要查詢的數(shù)據(jù)進(jìn)行轉(zhuǎn)發(fā)給另一個(gè)activity進(jìn)行處理。
關(guān)鍵代碼:
    
public class SearchInvoke extends Activity{
	private Button mStartSearch;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.search_invoke);
		//就一個(gè)按鈕
		mStartSearch = (Button)findViewById(R.id.btn_start_search);
		//啟動(dòng)搜索框
		mStartSearch.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View v) {
				onSearchRequested();
			}
		});
	}

        //重寫onSearchRequested方法
	@Override
	public boolean onSearchRequested() {
               //除了輸入查詢的值,還可額外綁定一些數(shù)據(jù)
		Bundle appSearchData = new Bundle();
		appSearchData.putString("demo_key","text");
		
		startSearch(null, false, appSearchData, false); 
                //必須返回true。否則綁定的數(shù)據(jù)作廢
		return true;
	}	

}

  


3.處理activity--》SearchQueryResults.java
    
public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.search_query_results);

        //兩個(gè)TextView進(jìn)行數(shù)據(jù)顯示
        mQueryText = (TextView) findViewById(R.id.txt_query);
        mAppDataText = (TextView) findViewById(R.id.txt_appdata);

        final Intent queryIntent = getIntent();
        final String queryAction = queryIntent.getAction();
        if (Intent.ACTION_SEARCH.equals(queryAction)) {
            doSearchQuery(queryIntent, "onCreate()");
        }
        else {
            mDeliveredByText.setText("onCreate(), but no ACTION_SEARCH intent");
        }
    }

    /** 
     * Called when new intent is delivered.
       這個(gè)方法不知道何時(shí)調(diào)用。看了文檔說(shuō)在manifest中配置此activity的啟動(dòng)模式為singleTop。不過(guò)試了貌似還沒(méi)有執(zhí)行到此方法
     */
    @Override
    public void onNewIntent(final Intent newIntent) {
        super.onNewIntent(newIntent);
        Log.i(TAG, "SearchQueryResults-->onNewIntent()");
        // get and process search query here
        final Intent queryIntent = getIntent();
        final String queryAction = queryIntent.getAction();
        if (Intent.ACTION_SEARCH.equals(queryAction)) {
            doSearchQuery(queryIntent, "onNewIntent()");
        }
        else {
            mDeliveredByText.setText("onNewIntent(), but no ACTION_SEARCH intent");
        }
    }

    //處理
    private void doSearchQuery(final Intent queryIntent, final String entryPoint) {

        //獲取查詢的值  
        final String queryString = queryIntent.getStringExtra(SearchManager.QUERY);
        mQueryText.setText(queryString);

        //保存查詢的值,這樣在下次搜索的時(shí)候會(huì)有以前搜索數(shù)據(jù)的提示
        SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, 
                SearchSuggestionSampleProvider.AUTHORITY, SearchSuggestionSampleProvider.MODE);
        suggestions.saveRecentQuery(queryString, null);
        
        //獲得額外遞送過(guò)來(lái)的值
        final Bundle appData = queryIntent.getBundleExtra(SearchManager.APP_DATA);
        if (appData == null) {
            mAppDataText.setText("<no app data bundle>");
        }
        if (appData != null) {
            String testStr = appData.getString("demo_key");
            mAppDataText.setText((testStr == null) ? "<no app data>" : testStr);
        }
    }

  


3.創(chuàng)建類SearchSuggestionSampleProvider.java用戶查詢數(shù)據(jù)保存的配置信息
    
public class SearchSuggestionSampleProvider extends
        SearchRecentSuggestionsProvider {

    final static String AUTHORITY="SuggestionProvider";
    final static int MODE=DATABASE_MODE_QUERIES;
    
    public SearchSuggestionSampleProvider(){
        super();
        setupSuggestions(AUTHORITY, MODE);
    }
}

  


4.最重要的一步,在AndroidManifest.xml中的配置
    
<!-- search ui -->
		 <activity android:name="com.zyz.app.SearchQueryResults"
                  android:label="處理查詢結(jié)果">
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
            </intent-filter>
            <meta-data android:name="android.app.searchable"
                       android:resource="@xml/searchable" />
       	 </activity>
        <!--此activity用來(lái)輸入并遞送結(jié)果,meta-data必須配置-->
       	 <activity android:name="com.zyz.app.SearchInvoke">
       	 	<intent-filter>
       	 		<action android:name="android.intent.action.MAIN"/>
       	 		<category android:name="android.intent.category.LAUNCHER"/>
       	 	</intent-filter>
       	 	<meta-data android:name="android.app.default_searchable"
       	 		android:value="com.zyz.app.SearchQueryResults"/>
       	 </activity>
       <!--provider的注冊(cè)-->
        <provider android:name="com.zyz.app.SearchSuggestionSampleProvider"
                  android:authorities="SuggestionProvider" />

  


5.無(wú)圖無(wú)真相

android中的search dialog

android中的search dialog


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 亚洲成人免费网站 | 日本一级大黄毛片免费基地 | 亚洲欧美日韩在线一区二区三区 | 久草视频免费播放 | 国产成人午夜 | 欧美日本在线视频 | 99国产精品免费视频观看 | 麻豆国内精品久久久久久 | 国产主播在线看 | 日韩一区二区三区不卡视频 | 末成年一级在线看片 | 欧美一区二区在线观看免费网站 | 香蕉尹人 | 91精品免费在线观看 | 免费看国产一级特黄aa大片 | 欧美日韩中文一区 | 成人www视频网站免费观看 | 日产国语一区二区三区在线看 | 男女超爽视频免费播放在线观看 | 亚洲视频1区 | 一级特级欧美aa毛片免费 | 欧美精品久久久亚洲 | 色综合久久中文字幕网 | 激情综合色综合啪啪开心 | 色欧美在线 | 91欧美在线视频 | 欧美毛片网 | 午夜欧美激情 | 久久福利青草精品免费 | 久久国产偷 | 日韩一区二区在线视频 | 国产精品久久天天影视 | 久久只有这里有精品 | 成人做爰毛片免费视频 | 国产一区高清视频 | 一区二区三区亚洲视频 | 91在线| 美女国产精品 | 99热这里只有精品在线观看 | 国产剧情一区二区 | 国产精品亚洲一区二区三区久久 |