失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > 仿 bilibili 搜索框效果(三句代码实现)

仿 bilibili 搜索框效果(三句代码实现)

时间:2023-01-10 05:56:40

相关推荐

仿 bilibili 搜索框效果(三句代码实现)

SearchDialog

项目地址:wenwenwen888/SearchDialog简介:仿 bilibili 搜索框效果(三句代码实现)更多:作者提 Bug标签:搜索-搜索框-search-仿Bilibili搜索框-

仿 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() {@Overridepublic void OnSearchClick(String keyword) {//这里处理逻辑Toast.makeText(ToolBarActivity.this, keyword, Toast.LENGTH_SHORT).show();}});

第三句 , 显示搜索框:

searchFragment.show(getSupportFragmentManager(),SearchFragment.TAG);

License

Copyright wenwenwen888Licensed 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/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.

如果觉得《仿 bilibili 搜索框效果(三句代码实现)》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。