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

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

时间:2023-03-19 03:26:09

相关推荐

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

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 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

/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.

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

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