仿bilibili搜索框效果(只需要三句话即可实现)
先看预览图(转换后有一点点失真):
1,支持搜索历史(已经做了数据库存储了)
2,基本与bilibili的搜索效果差不多了
3,需要修改更多内容可以下载library自己修改
4,本人非大牛,有不妥之处请Issues指出,谢谢
5,参考了该po的文章 ,感谢
6,感谢各位提交Issues,隔了这么久才更新,对8起
- 1.0.1版本:修复对aapt2支持,增添判断二次打开问题。
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.