SearchDialog
仿bilibili搜索框效果(只需要三句話即可實現)
先看預覽圖(轉換后有一點點失真):
前言
1,支持搜索歷史(已經做了數據庫存儲了)
2,基本與bilibili的搜索效果差不多了
3,需要修改更多內容可以下載library自己修改
4,本人非大牛,有不妥之處請Issues指出,謝謝
5,參考了該po的文章 ,感謝
Usage
With Gradle:
compile 'com.wenwenwen888:searchbox:1.0.0'
How to use
第一句 , 實例化:
SearchFragment searchFragment = SearchFragment.newInstance();
第二句 , 設置回調:
searchFragment.setOnSearchClickListener(new IOnSearchClickListener() {
@Override
public void OnSearchClick(String keyword) {
//這里處理邏輯
Toast.makeText(ToolBarActivity.this, keyword, Toast.LENGTH_SHORT).show();
}
});
第三句 , 顯示搜索框:
searchFragment.show(getSupportFragmentManager(),SearchFragment.TAG);
License
Copyright 2016 wenwenwen888
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.