Android开发之实现搜索框搜索_android搜索框功能实现-程序员宅基地

技术标签: java  html5  android  android搜索框  数据库  

最近自己在尝试做app开发,遇到搜索框功能,便查找了一下但是感觉自己想的或许更好理解和记住,便自己思考了一下。废话不多说,下面是实现代码,供大家参考,有待改进。

先说一下我整体思路,因为刚开始写所以相关数据都没有上传服务器过。首先建立一个数据库,将可以搜索的相关内容存储到数据库的搜索表当中,然后在搜索框中获取输入的第一个字符,按照字符搜索相关内容。同时创建历史搜索表,将搜索过的内容放入到搜索历史表当中去。每一次进入搜索页面都从搜索历史表当中获取之前的搜索历史,点击清空搜索历史将删除表中的所有内容。

这是我点击跳转到搜索界面,只需要关注最顶上即可

其中第一步就是自定listview布局,这一块一搬自定义的大多数相同

package com.example.tjtcexample.subsidiary.services1.search;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ListView;

public class ListViewForScrollView extends ListView {
    public ListViewForScrollView(Context context) {
        super(context);
    }

    public ListViewForScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public ListViewForScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }


    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expected=MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE>>2,MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expected);
    }
}

然后在xml中建立布局,效果见上图

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_margin="10dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <ImageView
                android:layout_width="0dp"
                android:layout_height="30dp"
                android:layout_weight="1"
                android:background="@drawable/back"
                android:layout_gravity="center"
                android:id="@+id/iv_searchback"/>
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="8"
                android:orientation="horizontal"

                android:background="@drawable/search_round"
                android:id="@+id/linear_searchitem">

                <EditText
                    android:id="@+id/et_searchtext"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="3"
                    android:hint="输入关键字搜索"
                    android:background="@null"
                    android:textSize="18sp"
                    android:drawableLeft="@android:drawable/ic_menu_search"
                    android:singleLine="true"
                    android:imeOptions="actionSearch"
                    />
                <Button
                    android:id="@+id/btn_search"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:text="搜索"
                    android:textSize="18sp"
                    android:background="@drawable/btn_round"/>
            </LinearLayout>
        </LinearLayout>

        <com.example.tjtcexample.subsidiary.services1.search.ListViewForScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/search_listview"/>
    </LinearLayout>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="45dp"
                    android:text="搜索历史"
                    android:textSize="18sp"
                    android:layout_gravity="center"
                    android:gravity="center"/>
              <TextView
                  android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:id="@+id/tv_searchhistory"
                  android:background="@color/teal_200"/>
            </LinearLayout>
            <View
                android:layout_width="match_parent"
                android:layout_height="2dp"
                android:background="@color/gray"/>
            <TextView
                android:id="@+id/tv_clearsearch"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:text="清空搜索历史"
                android:textSize="18sp"
                android:layout_gravity="center"
                android:gravity="center"/>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

public class SearchActivity extends AppCompatActivity {

    private ImageView iv_searchBack;
    private Button btn_search;
    private EditText et_searchText;
    private ListViewForScrollView listViewForScrollView;
    private TextView tv_historyText,tv_clearHistory;
    private List<String> searchList=new ArrayList<>();
    private int count=0;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_search);
        initView();
        setListeners();
    }

    /**
     * 获取相对应的控件
     */
    private void initView() {
        iv_searchBack=findViewById(R.id.iv_searchback);
        btn_search=findViewById(R.id.btn_search);
        et_searchText=findViewById(R.id.et_searchtext);
        listViewForScrollView=findViewById(R.id.search_listview);
        tv_historyText=findViewById(R.id.tv_searchhistory);
        tv_clearHistory=findViewById(R.id.tv_clearsearch);
    }

    /**
     * 实现搜索功能
     */
    private void setListeners() {

        /**
         * 存放搜索历史的表
         */
        SQLiteOpenHelper helper=SearchSQLiteOpenHelper.getmInstance(SearchActivity.this);

        /**
         * 返回服务页面
         */
        iv_searchBack.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent=new Intent(SearchActivity.this, Services1Activity.class);
                startActivity(intent);
            }
        });

        /**
         * 给搜索历史传入空
         */
        tv_historyText.setText(" ");

        /**
         * 搜索按钮的监听
         */
        btn_search.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                String obtain=et_searchText.getText().toString().trim();
                /**
                 * 下一次点击搜索按钮时清空前一次搜索列表
                 */
                count++;
                if(count%1==0){
                    searchList.clear();
                }
                /**
                 * 将搜索框内容放入到搜索历史当中去
                 */
                tv_historyText.append(obtain+" ");
                /**
                 * 将搜索框内容放入到搜索历史表当中去
                 */
                SQLiteDatabase db_history=helper.getWritableDatabase();
                if(db_history.isOpen()){
                    String add_historysearchname_sql="insert into historysearch(historyname) values(?);";
                    db_history.execSQL(add_historysearchname_sql,new Object[]{obtain});
                    Toast.makeText(SearchActivity.this,"增加成功",Toast.LENGTH_SHORT).show();
                }
                db_history.close();

                /**
                 * 判断搜索框是否为空
                 */
                if(obtain.isEmpty()){
                    Toast.makeText(SearchActivity.this,"搜索框为空",Toast.LENGTH_SHORT).show();
                    searchList.clear();
                }else{
                    /**
                     * 获取数据库中的表,取出搜索框中的首字符放入查询语句进行查询相匹配的内容
                     */
                    SQLiteDatabase db_search=helper.getReadableDatabase();
                    if(db_search.isOpen()){
                        String firstChar=obtain.substring(0,1);
                        String query_sql="select * from search where searchname like '"+firstChar+"%'";
                        Cursor cursor = db_search.rawQuery(query_sql,null);
                        if(cursor.getCount()==0){
                            Toast.makeText(SearchActivity.this,"没有该服务",Toast.LENGTH_SHORT).show();
                        }else{
                            cursor.moveToFirst();
                            String searchname=cursor.getString(cursor.getColumnIndex("searchname"));
                            searchList.add(searchname);
                        }
                        while(cursor.moveToNext()){
                            String searchname1=cursor.getString(cursor.getColumnIndex("searchname"));
                            searchList.add(searchname1);
                        }
                        cursor.close();
                    }
                    db_search.close();
                }
                /**
                 * 自定义搜索适配器,将适配器放入自定义的listview当中
                 */
                SearchBaseAdapter searchBaseAdapter=new SearchBaseAdapter();
                listViewForScrollView.setAdapter(searchBaseAdapter);

            }
        });
    /**
         * 搜索列表的点击事件
         */
        listViewForScrollView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                Toast.makeText(SearchActivity.this,"点击"+searchList.get(position),Toast.LENGTH_SHORT).show();

            }
        });


        SQLiteDatabase db_get_history=helper.getReadableDatabase();
        if(db_get_history.isOpen()){
            String sql_history_query="select * from historysearch;";
            Cursor cursor = db_get_history.rawQuery(sql_history_query, null);
            if(cursor.getCount()==0){
                Toast.makeText(SearchActivity.this,"没有搜索历史",Toast.LENGTH_SHORT).show();
            }else{
                cursor.moveToFirst();
                String history_name=cursor.getString(cursor.getColumnIndex("historyname"));
                tv_historyText.append(history_name+" ");
            }
            while (cursor.moveToNext()){
                String history_name=cursor.getString(cursor.getColumnIndex("historyname"));
                tv_historyText.append(history_name+" ");
            }
            cursor.close();
        }
        db_get_history.close();



        tv_clearHistory.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                SQLiteDatabase db_delete_history=helper.getWritableDatabase();
                if(db_delete_history.isOpen()){
                    String sql_delete_history="delete  from historysearch;";
                    db_delete_history.execSQL(sql_delete_history);
                    Toast.makeText(SearchActivity.this,"删除成功",Toast.LENGTH_SHORT).show();
                }
                tv_historyText.setText(" ");
            }
        });
    }

    /**
     * 适配器获取数据库中搜索表所存放的内容
     */
    class SearchBaseAdapter extends BaseAdapter{

        @Override
        public int getCount() {
            return searchList.size();
        }

        @Override
        public Object getItem(int position) {
            return searchList.get(position);
        }

        @Override
        public long getItemId(int position) {
            return position;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            ViewHolder holder=null;
            if(convertView==null){
                convertView=View.inflate(SearchActivity.this,R.layout.searchlist_item,null);
                holder=new ViewHolder();
                holder.tv_searchLisItem=convertView.findViewById(R.id.tv_searchlistitem);
                convertView.setTag(holder);
            }else{
                holder=(ViewHolder)convertView.getTag();
            }
            holder.tv_searchLisItem.setText(searchList.get(position));
            return convertView;
        }
    }
    class ViewHolder{
        TextView tv_searchLisItem;
    }
}

下面这就是建库建表的了


public class SearchSQLiteOpenHelper extends SQLiteOpenHelper {

    private static SQLiteOpenHelper mInstance=null;
    public static synchronized SQLiteOpenHelper getmInstance(Context context){
        if(mInstance==null){
            mInstance=new SearchSQLiteOpenHelper(context,"searchitem.db",null,3);
        }
        return mInstance;
    }
    public SearchSQLiteOpenHelper(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version) {
        super(context, name, factory, version);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        String sql="create table search(_id integer primary key autoincrement,searchname varchar(20));";
        db.execSQL(sql);
        String sql_history="create table historysearch(_id integer primary key autoincrement,historyname varchar(20));";
        db.execSQL(sql_history);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

    }
}

如果帮助到你,哈哈哈哈

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_45534711/article/details/120554690

智能推荐

解决win10/win8/8.1 64位操作系统MT65xx preloader线刷驱动无法安装_mt65驱动-程序员宅基地

文章浏览阅读1.3w次。转载自 http://www.miui.com/thread-2003672-1-1.html 当手机在刷错包或者误修改删除系统文件后会出现无法开机或者是移动定制(联通合约机)版想刷标准版,这时就会用到线刷,首先就是安装线刷驱动。 在XP和win7上线刷是比较方便的,用那个驱动自动安装版,直接就可以安装好,完成线刷。不过现在也有好多机友换成了win8/8.1系统,再使用这个_mt65驱动

SonarQube简介及客户端集成_sonar的客户端区别-程序员宅基地

文章浏览阅读1k次。SonarQube是一个代码质量管理平台,可以扫描监测代码并给出质量评价及修改建议,通过插件机制支持25+中开发语言,可以很容易与gradle\maven\jenkins等工具进行集成,是非常流行的代码质量管控平台。通CheckStyle、findbugs等工具定位不同,SonarQube定位于平台,有完善的管理机制及强大的管理页面,并通过插件支持checkstyle及findbugs等既有的流..._sonar的客户端区别

元学习系列(六):神经图灵机详细分析_神经图灵机方法改进-程序员宅基地

文章浏览阅读3.4k次,点赞2次,收藏27次。神经图灵机是LSTM、GRU的改进版本,本质上依然包含一个外部记忆结构、可对记忆进行读写操作,主要针对读写操作进行了改进,或者说提出了一种新的读写操作思路。神经图灵机之所以叫这个名字是因为它通过深度学习模型模拟了图灵机,但是我觉得如果先去介绍图灵机的概念,就会搞得很混乱,所以这里主要从神经图灵机改进了LSTM的哪些方面入手进行讲解,同时,由于模型的结构比较复杂,为了让思路更清晰,这次也会分开几..._神经图灵机方法改进

【机器学习】机器学习模型迭代方法(Python)-程序员宅基地

文章浏览阅读2.8k次。一、模型迭代方法机器学习模型在实际应用的场景,通常要根据新增的数据下进行模型的迭代,常见的模型迭代方法有以下几种:1、全量数据重新训练一个模型,直接合并历史训练数据与新增的数据,模型直接离线学习全量数据,学习得到一个全新的模型。优缺点:这也是实际最为常见的模型迭代方式,通常模型效果也是最好的,但这样模型迭代比较耗时,资源耗费比较多,实时性较差,特别是在大数据场景更为困难;2、模型融合的方法,将旧模..._模型迭代

base64图片打成Zip包上传,以及服务端解压的简单实现_base64可以装换zip吗-程序员宅基地

文章浏览阅读2.3k次。1、前言上传图片一般采用异步上传的方式,但是异步上传带来不好的地方,就如果图片有改变或者删除,图片服务器端就会造成浪费。所以有时候就会和参数同步提交。笔者喜欢base64图片一起上传,但是图片过多时就会出现数据丢失等异常。因为tomcat的post请求默认是2M的长度限制。2、解决办法有两种:① 修改tomcat的servel.xml的配置文件,设置 maxPostSize=..._base64可以装换zip吗

Opencv自然场景文本识别系统(源码&教程)_opencv自然场景实时识别文字-程序员宅基地

文章浏览阅读1k次,点赞17次,收藏22次。Opencv自然场景文本识别系统(源码&教程)_opencv自然场景实时识别文字

随便推点

ESXi 快速复制虚拟机脚本_exsi6.7快速克隆centos-程序员宅基地

文章浏览阅读1.3k次。拷贝虚拟机文件时间比较长,因为虚拟机 flat 文件很大,所以要等。脚本完成后,以复制虚拟机文件夹。将以下脚本内容写入文件。_exsi6.7快速克隆centos

好友推荐—基于关系的java和spark代码实现_本关任务:使用 spark core 知识完成 " 好友推荐 " 的程序。-程序员宅基地

文章浏览阅读2k次。本文主要实现基于二度好友的推荐。数学公式参考于:http://blog.csdn.net/qq_14950717/article/details/52197565测试数据为自己随手画的关系图把图片整理成文本信息如下:a b c d e f yb c a f gc a b dd c a e h q re f h d af e a b gg h f bh e g i di j m n ..._本关任务:使用 spark core 知识完成 " 好友推荐 " 的程序。

南京大学-高级程序设计复习总结_南京大学高级程序设计-程序员宅基地

文章浏览阅读367次。南京大学高级程序设计期末复习总结,c++面向对象编程_南京大学高级程序设计

4.朴素贝叶斯分类器实现-matlab_朴素贝叶斯 matlab训练和测试输出-程序员宅基地

文章浏览阅读3.1k次,点赞2次,收藏12次。实现朴素贝叶斯分类器,并且根据李航《统计机器学习》第四章提供的数据训练与测试,结果与书中一致分别实现了朴素贝叶斯以及带有laplace平滑的朴素贝叶斯%书中例题实现朴素贝叶斯%特征1的取值集合A1=[1;2;3];%特征2的取值集合A2=[4;5;6];%S M LAValues={A1;A2};%Y的取值集合YValue=[-1;1];%数据集和T=[ 1,4,-1;..._朴素贝叶斯 matlab训练和测试输出

Markdown 文本换行_markdowntext 换行-程序员宅基地

文章浏览阅读1.6k次。Markdown 文本换行_markdowntext 换行

错误:0xC0000022 在运行 Microsoft Windows 非核心版本的计算机上,运行”slui.exe 0x2a 0xC0000022″以显示错误文本_错误: 0xc0000022 在运行 microsoft windows 非核心版本的计算机上,运行-程序员宅基地

文章浏览阅读6.7w次,点赞2次,收藏37次。win10 2016长期服务版激活错误解决方法:打开“注册表编辑器”;(Windows + R然后输入Regedit)修改SkipRearm的值为1:(在HKEY_LOCAL_MACHINE–》SOFTWARE–》Microsoft–》Windows NT–》CurrentVersion–》SoftwareProtectionPlatform里面,将SkipRearm的值修改为1)重..._错误: 0xc0000022 在运行 microsoft windows 非核心版本的计算机上,运行“slui.ex