android内置搜索对话框(浮动搜索)例子

Wesley13
• 阅读 951

差点忘了,先上图看效果吧:

android内置搜索对话框(浮动搜索)例子

步骤:

(1)配置search bar的相关信息,新建一个位于res/xml下的一个searchable.xml的配置文件

<?xml version="1.0" encoding="utf-8"?>
<searchable
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:hint="@string/searchHint" 
  android:searchMode="showSearchLabelAsBadge"
    android:searchSuggestAuthority="com.android.cbin.SearchSuggestionSampleProvider"
    android:searchSuggestSelection=" ? ">
  
</searchable>

 

(2) manifest.xml配置,搜索结果处理的Activity将出现两种情况,一种是从其他Activity中的search bar打开一个Activtiy

专门处理搜索结果,第二种是就在当前Activity就是处理结果的Activity,这配置里包含两种情况,自己可以看代码能分辨出来。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.android.cbin"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Main"
                  android:label="@string/app_name">
            <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=".SearchResultActivity" />
        </activity>
    <activity android:name="SearchResultActivity" android:launchMode="singleTop">
    
        <intent-filter>
            <action android:name="android.intent.action.SEARCH"></action>
        </intent-filter>
        <meta-data android:resource="@xml/searchable" android:name="android.app.searchable"></meta-data>
    </activity>
<provider android:name="SearchSuggestionSampleProvider" android:authorities="com.android.cbin.SearchSuggestionSampleProvider"></provider>
</application>
    <uses-sdk android:minSdkVersion="7" />
</manifest>

 

(3 )  保存历史记录  

上面authorities 指向的 都是name中所关联的SearchSuggestionSampleProvider,他是一个

SearchRecentSuggestionsProvider的子类

package com.android.search;
import android.content.SearchRecentSuggestionsProvider;
public class SearchSuggestionSampleProvider extends
        SearchRecentSuggestionsProvider {
    final static String AUTHORITY="com.android.search.SearchSuggestionSampleProvider";
    final static int MODE=DATABASE_MODE_QUERIES;
    
    public SearchSuggestionSampleProvider(){
        super();
        setupSuggestions(AUTHORITY, MODE);
    }
}

 

(4)为了能够使用search bar 我们必须重写Activity的onSearchRequested的方法,在界面上启动一个search bar

但是这个动作不会自动触发,必须通过一个按钮或者菜单的点击事件触发;

package com.android.search;
import com.android.search.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
public class Main extends Activity implements OnClickListener{
    /** Called when the activity is first created. */
    private EditText etdata;
    private Button btnsearch;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        findview();
    }
    
    private void findview(){
        etdata=(EditText)findViewById(R.id.etdata);
        btnsearch=(Button)findViewById(R.id.btncall);
        btnsearch.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        onSearchRequested();
    }
    
    @Override
    public boolean onSearchRequested(){
        
        String text=etdata.getText().toString();
        Bundle bundle=new Bundle();
        bundle.putString("data", text);
        
        //打开浮动搜索框(第一个参数默认添加到搜索框的值)
        //bundle为传递的数据
        startSearch("哈哈", false, bundle, false);
        //这个地方一定要返回真 如果只是super.onSearchRequested方法
        //不但onSearchRequested(搜索框默认值)无法添加到搜索框中
        //bundle也无法传递出去
        return true;
    }
    
}

 

(5) 在本Activity中搜索

package com.android.search;
import com.android.search.R;
import android.app.Activity;
import android.app.SearchManager;
import android.content.Intent;
import android.os.Bundle;
import android.provider.SearchRecentSuggestions;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class SearchResultActivity extends Activity implements OnClickListener{
    private TextView tvquery,tvdata;
    private Button btnsearch;
    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.searchresult);
        
        tvquery=(TextView)findViewById(R.id.tvquery);
        tvdata=(TextView)findViewById(R.id.tvdata);
        btnsearch=(Button)findViewById(R.id.btnSearch);
        doSearchQuery();
        
        btnsearch.setOnClickListener(this);
    }
    
    public void doSearchQuery(){
        final Intent intent = getIntent();
        //获得搜索框里值
        String query=intent.getStringExtra(SearchManager.QUERY);
        tvquery.setText(query);
        //保存搜索记录
        SearchRecentSuggestions suggestions=new SearchRecentSuggestions(this,
                SearchSuggestionSampleProvider.AUTHORITY, SearchSuggestionSampleProvider.MODE);
        suggestions.saveRecentQuery(query, null);
        if(Intent.ACTION_SEARCH.equals(intent.getAction())){
            //获取传递的数据
            Bundle bundled=intent.getBundleExtra(SearchManager.APP_DATA);
            if(bundled!=null){
                String ttdata=bundled.getString("data");
                tvdata.setText(ttdata);
            }else{
                tvdata.setText("no data");
            }
        }
    }
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        onSearchRequested();
    }
    
    @Override
    public boolean onSearchRequested(){
        
        startSearch("onNewIntent", false, null, false);
        return true;
    }
    
    @Override
    public void onNewIntent(Intent intent){
        super.onNewIntent(intent);
        //获得搜索框里值
        String query=intent.getStringExtra(SearchManager.QUERY);
        tvquery.setText(query);
        //保存搜索记录
        SearchRecentSuggestions suggestions=new SearchRecentSuggestions(this,
                SearchSuggestionSampleProvider.AUTHORITY, SearchSuggestionSampleProvider.MODE);
        suggestions.saveRecentQuery(query, null);
        if(Intent.ACTION_SEARCH.equals(intent.getAction())){
            //获取传递的数据
            Bundle bundled=intent.getBundleExtra(SearchManager.APP_DATA);
            if(bundled!=null){
                String ttdata=bundled.getString("data");
                tvdata.setText(ttdata);
            }else{
                tvdata.setText("no data");
            }
        }
    }
}
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Android蓝牙连接汽车OBD设备
//设备连接public class BluetoothConnect implements Runnable {    private static final UUID CONNECT_UUID  UUID.fromString("0000110100001000800000805F9B34FB");
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这