All Projects → wenwenwen888 → Searchdialog

wenwenwen888 / Searchdialog

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

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Searchdialog

Opengrok
OpenGrok is a fast and usable source code search and cross reference engine, written in Java
Stars: ✭ 3,452 (+856.23%)
Mutual labels:  search
Scout Extended
Scout Extended: The Full Power of Algolia in Laravel
Stars: ✭ 330 (-8.59%)
Mutual labels:  search
Googleapi
C# .NET Core Google Api (Maps, Places, Roads, Search, Translate). Supports all endpoints and requests / responses.
Stars: ✭ 346 (-4.16%)
Mutual labels:  search
Calaca
Search UI for Elasticsearch
Stars: ✭ 318 (-11.91%)
Mutual labels:  search
Vue Simple Suggest
Feature-rich autocomplete component for Vue.js
Stars: ✭ 324 (-10.25%)
Mutual labels:  search
Docsearch Configs
DocSearch - Configurations
Stars: ✭ 339 (-6.09%)
Mutual labels:  search
Alfred Npms
Alfred 3 workflow to search for npm packages with npms.io
Stars: ✭ 312 (-13.57%)
Mutual labels:  search
Algoliasearch Rails
AlgoliaSearch integration to your favorite ORM
Stars: ✭ 352 (-2.49%)
Mutual labels:  search
Fd
A simple, fast and user-friendly alternative to 'find'
Stars: ✭ 19,851 (+5398.89%)
Mutual labels:  search
Js Worker Search
JavaScript client-side search API with web-worker support
Stars: ✭ 345 (-4.43%)
Mutual labels:  search
Vtbs.moe
Virtual YouTubers in bilibili
Stars: ✭ 321 (-11.08%)
Mutual labels:  bilibili
Bilibili Plus
课程视频、PPT和源代码:侯捷C++系列;台大郭彦甫MATLAB
Stars: ✭ 266 (-26.32%)
Mutual labels:  bilibili
Blivechat
用于OBS的仿YouTube风格的bilibili直播评论栏
Stars: ✭ 329 (-8.86%)
Mutual labels:  bilibili
Hexo Generator Search
A plugin to generate search data for Hexo.
Stars: ✭ 318 (-11.91%)
Mutual labels:  search
Fmap
宇行地图:高仿高德地图Android客户端(持续更新中...)
Stars: ✭ 347 (-3.88%)
Mutual labels:  search
Bitfunnel
A signature-based search engine
Stars: ✭ 313 (-13.3%)
Mutual labels:  search
Unsplash Php
👻 Official PHP wrapper for the Unsplash API
Stars: ✭ 332 (-8.03%)
Mutual labels:  search
Minsql
High-performance log search engine.
Stars: ✭ 356 (-1.39%)
Mutual labels:  search
Xapiand
Xapiand: A RESTful Search Engine
Stars: ✭ 347 (-3.88%)
Mutual labels:  search
Bilibili Helper O
哔哩哔哩 (bilibili.com) 辅助工具,可以替换播放器、推送通知并进行一些快捷操作
Stars: ✭ 3,717 (+929.64%)
Mutual labels:  bilibili

SearchDialog

仿bilibili搜索框效果(只需要三句话即可实现)

先看预览图(转换后有一点点失真):

前言

1,支持搜索历史(已经做了数据库存储了)

2,基本与bilibili的搜索效果差不多了

3,需要修改更多内容可以下载library自己修改

4,本人非大牛,有不妥之处请Issues指出,谢谢

5,参考了该po的文章 ,感谢

6,感谢各位提交Issues,隔了这么久才更新,对8起

Update log

  • 1.0.1版本:修复对aapt2支持,增添判断二次打开问题。

Usage

With Gradle:

  implementation 'com.wenwenwen888:searchbox:1.0.1'

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.showFragment(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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].