Android searchView和listview实现搜索

http://blog.csdn.net/yelangjueqi/article/details/8994726



Android searchView和listview实现搜索

分类: Android 基础知识 9909人阅读 评论(12) 收藏 举报
android searchview actionbar

searchView是一个为用户提供输入搜索查询和提交请求给搜索提供者的用户界面部件,显示查询建议或结果列表!本篇介绍一下将searchView加入到自定义标题栏布局中,结合listview实现搜索,首先看一下自定义布局:

1.自定义标题栏布局:custom_action_bar_layout.xml

[html] view plain copy
  1. <span style="font-size:14px;">xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="0dip"  
  5.     android:background="#565758"  
  6.     android:orientation="horizontal" >  
  7.   
  8.     

你可能感兴趣的:(Android)