Android:控件AutoCompleteTextView 客户端保存搜索历史自动提示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="horizontal" > <AutoCompleteTextView
android:id="@+id/auto"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:completionHint="最近5条记录"
android:completionThreshold="1"
/> <Button
android:id="@+id/search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="搜索" />
</LinearLayout> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" > <Button
android:id="@+id/clean"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="清除历史记录"
android:onClick="cleanHistory"
/>
</LinearLayout> </LinearLayout>
public class TestActivity extends Activity {
private AutoCompleteTextView auto;
private Button searchbtn;
private ArrayAdapter<String> arr_adapter; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test); // 初始化
auto = (AutoCompleteTextView) findViewById(R.id.auto);
searchbtn = (Button) findViewById(R.id.search); // 获取搜索记录文件内容
SharedPreferences sp = getSharedPreferences("search_history", 0);
String history = sp.getString("history", "暂时没有搜索记录"); // 用逗号分割内容返回数组
String[] history_arr = history.split(","); // 新建适配器,适配器数据为搜索历史文件内容
arr_adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, history_arr); // 保留前50条数据
if (history_arr.length > 50) {
String[] newArrays = new String[50];
// 实现数组之间的复制
System.arraycopy(history_arr, 0, newArrays, 0, 50);
arr_adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, history_arr);
} // 设置适配器
auto.setAdapter(arr_adapter); // 设置监听事件,点击搜索写入搜索词
searchbtn.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
save();
} }); } public void save() {
// 获取搜索框信息
String text = auto.getText().toString();
SharedPreferences mysp = getSharedPreferences("search_history", 0);
String old_text = mysp.getString("history", "暂时没有搜索记录"); // 利用StringBuilder.append新增内容,逗号便于读取内容时用逗号拆分开
StringBuilder builder = new StringBuilder(old_text);
builder.append(text + ","); // 判断搜索内容是否已经存在于历史文件,已存在则不重复添加
if (!old_text.contains(text + ",")) {
SharedPreferences.Editor myeditor = mysp.edit();
myeditor.putString("history", builder.toString());
myeditor.commit();
Toast.makeText(this, text + "添加成功", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, text + "已存在", Toast.LENGTH_SHORT).show();
} } //清除搜索记录
public void cleanHistory(View v){
SharedPreferences sp =getSharedPreferences("search_history",0);
SharedPreferences.Editor editor=sp.edit();
editor.clear();
editor.commit();
Toast.makeText(this, "清除成功", Toast.LENGTH_SHORT).show();
super.onDestroy();
} }
相关文章:
Android:控件AutoCompleteTextView 客户端保存搜索历史自动提示的更多相关文章
- Android——控件AutoCompleteTextView 自动提示
Android:控件AutoCompleteTextView 自动提示 在输入框中输入我们想要输入的信息就会出现其他与其相关的提示信息,这种效果在Android中是用AutoCompleteTextV ...
- Android 控件 -------- AutoCompleteTextView 动态匹配内容,例如 百度搜索提示下拉列表功能
AutoCompleteTextView 支持基本的自动完成功能,适用在各种搜索功能中,并且可以根据自己的需求设置他的默认显示数据.两个控件都可以很灵活的预置匹配的那些数据,并且可以设置输入多少值时开 ...
- Android控件——AutoCompleteTextView与MultiAutoCompleteTextView(实现自动匹配输入的内容)
------------------------------------AutoCompleteTextView----------------------
- Android AutoCompleteTextView控件实现类似百度搜索提示,限制输入数字长度
Android AutoCompleteTextView 控件实现类似被搜索提示,效果如下 1.首先贴出布局代码 activity_main.xml: <?xml version="1 ...
- 一步一步学android控件(之六) —— MultiAutoCompleteTextView
今天学习的控件是MultiAutoCompleteTextView . 提到MultiAutoCompleteTextView 我们就自然而然地想到AutoCompleteTextView ,就想知道 ...
- 从Android系统出发,分析Android控件构架
从Android系统出发,分析Android控件构架 Android中所有的控件追溯到根源,就是View 和ViewGroup,相信这个大家都知道,但是大家也许会不太清楚它们之间的具体关系是什么,在A ...
- android控件的属性
android控件的属性 本节描述android空间的位置,内容等相关属性及属性的含义 第一类:属性值为true或false android:layout_centerHrizontal 水平居中 ( ...
- Robotium之Android控件定位实践和建议(Appium/UIAutomator姊妹篇)
本人之前以前撰文描写叙述Appium和UIAutomator框架是怎样定位Android界面上的控件的. UIAutomator定位Android控件的方法实践和建议 Appium基于安卓的各种Fin ...
- Robotium之Android控件定位实践和建议
本人之前曾经撰文描述Appium和UIAutomator框架是如何定位Android界面上的控件的. UIAutomator定位Android控件的方法实践和建议Appium基于安卓的各种FindEl ...
随机推荐
- robots.txt用法
主要作用是告诉蜘蛛爬虫该网站下哪些内容能抓取,哪些内容不能抓取.虽然可以没有robots.txt这个文件,默认就抓取该网站的所有文件,对搜索引擎爬虫没有任何的影响,但是如果你想控制蜘蛛的检索间隔,你就 ...
- 通过替换frm文件方式修改表结构
版本:5.6.16 在自己的虚拟环境中,测试创建一个表,表结构如下:mysql> drop table yoon_temp;Query OK, 0 rows affected (0.09 sec ...
- Go在linux下的安装
在Ubuntu.Debian 或者 Linux Mint上安装Go语言 下面是在基于Debian的发行版上使用apt-get来安装Go语言和它的开发工具. $ sudo apt-get install ...
- mysql中常用的公式及个人演示
学生,院系表 -- phpMyAdmin SQL Dump-- version 4.1.9-- http://www.phpmyadmin.net---- Host: localhost-- Gene ...
- SVN服务器搭建和使用
SVN服务器搭建和使用 Subversion是优秀的版本控制工具,其具体的的优点和详细介绍,这里就不再多说. 首先来下载和搭建SVN服务器. 现在Subversion已经迁移到apache网站上了,下 ...
- 实用项目管理前台框架:EasyUI,ExtJs
EasyUI项目管理框架,如图: 项目名称:微信管理平台 项目地址:http://www.cnblogs.com/hanyinglong/p/3236966.html#3007557 托管地址:htt ...
- 为什么使用long声明和double声明得到的结果不一样呢?
为什么使用long声明和double声明得到的结果不一样呢? 程序如下: public class P376{ public static void main(String[] atgs){ long ...
- MapInfo格式转arggis格式
1. 下载MapInfo 11.0 2. 打开工具里的转换工具 3. 选择数据源和结果文件夹(目录中不能包含中文) 4. 转换成功.
- firefox常用扩展、脚本
1.AutoPopup.uc.js:鼠标移到菜单和下拉箭头上自动弹出下拉菜单 2.moveButton.uc.js:移动或克隆按钮或菜单到火狐浏览器的任意位置 moveButton.uc.js使用说明 ...
- sysconf和pathconf使用
问题描述: 查看系统运行时的限制值 问题解决: 执行效果: 源代码: