ckfree / SimpleSearchBar

精仿 IOS searchbar效果

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SimpleSearchBar

精仿 IOS searchbar效果

example

Quick start

Step 1.
Add it in your root build.gradle at the end of repositories:

  allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step 2.
Add the dependency:

	dependencies {
          compile 'com.github.ckfree:simplesearchbar:1.0'
  }

Quick example:

Step 1. 添加布局文件:

     <com.ckfree.common.SimpleSearchBar
        android:id="@+id/mysearchbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

可定义如下自定义属性:

    <com.ckfree.common.SimpleSearchBar
        android:id="@+id/mysearchbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:mCancelText="取消"
        app:mCancelTextColor="#123456"
        app:mCancelTextSize="14sp"
        app:mHintColor="#123456"
        app:mHintSize="13sp"
        app:mHintText="这里是Hint内容"
        app:mTextColor="#123456"
        app:mTextSize="13sp" />

Step 2. 初始化控件:

     SimpleSearchBar mysearchbar = (SimpleSearchBar) findViewById(R.id.mysearchbar);
     View displayview = ...//跟随searchbar显示隐藏的view
     mysearchbar.init(displayview, new SimpleSearchBar.SearchBarWathcer() {
           @Override
           protected void _onTextChanged(String s) {
             //实时获取文字变更
           }
      });

About

精仿 IOS searchbar效果


Languages

Language:Java 100.0%