SearchDialog
1.0.0
仿bilibili搜尋框效果(只需要三句話即可實現)
先看預覽圖(轉換後有一點點失真):
1,支援搜尋歷史(已經做了資料庫儲存了)
2,基本上與bilibili的搜尋效果差不多了
3,需要修改更多內容可以下載library自己修改
4,本人非大牛,有不妥之處請Issues指出,謝謝
5,參考了該po的文章,感謝
6,感謝各位提交Issues,隔了這麼久才更新,對8起
With Gradle:
implementation ' com.wenwenwen888:searchbox:1.0.1 '
第一句, 實例化:
SearchFragment searchFragment = SearchFragment . newInstance ();
第二句, 設定回呼:
searchFragment . setOnSearchClickListener ( new IOnSearchClickListener () {
@ Override
public void OnSearchClick ( String keyword ) {
//这里处理逻辑
Toast . makeText ( ToolBarActivity . this , keyword , Toast . LENGTH_SHORT ). show ();
}
});
第三句, 顯示搜尋框:
searchFragment . showFragment ( getSupportFragmentManager (), SearchFragment . TAG );
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.