Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.dnbit:floatingsearchview:-SNAPSHOT'
}
dependencies {
implementation("com.github.dnbit:floatingsearchview:-SNAPSHOT")
}
<dependency>
<groupId>com.github.dnbit</groupId>
<artifactId>floatingsearchview</artifactId>
<version>-SNAPSHOT</version>
</dependency>
libraryDependencies += "com.github.dnbit" % "floatingsearchview" % "-SNAPSHOT"
:dependencies [[com.github.dnbit/floatingsearchview "-SNAPSHOT"]]
An implementation of a floating search box with search suggestions.
In your dependencies, add
compile 'com.github.arimorty:floatingsearchview:1.1.2'
Example:
<com.arlib.floatingsearchview.FloatingSearchView
android:id="@+id/floating_search_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:floatingSearch_searchBarMarginLeft="@dimen/search_view_inset"
app:floatingSearch_searchBarMarginTop="@dimen/search_view_inset"
app:floatingSearch_searchBarMarginRight="@dimen/search_view_inset"
app:floatingSearch_searchHint="Search..."
app:floatingSearch_showSearchHintWhenNotFocused="true"
app:floatingSearch_showSearchKey="false"
app:floatingSearch_dismissOnOutsideTouch="true"
app:floatingSearch_leftActionMode="showHamburger"
app:floatingSearch_menu="@menu/menu_main"/>
mSearchView.setOnQueryChangeListener(new FloatingSearchView.OnQueryChangeListener() {
@Override
public void onSearchTextChanged(String oldQuery, final String newQuery) {
//get suggestions based on newQuery
//pass them on to the search view
mSearchView.swapSuggestions(newSuggestions);
}
});
<br/>
Left action mode:
The left action can be configured as follows:
Add
app:floatingSearch_leftActionMode="[insert one of the options from table below]"
<table>
<tr>
<td>showHamburger</td>
<td><img src="https://github.com/arimorty/floatingsearchview/blob/develop/images/vf2oi.gif"/></td>
</tr>
<tr>
<td>showSearch</td>
<td><img src="https://github.com/arimorty/floatingsearchview/blob/develop/images/vf91i.gif"/></td>
<tr>
<td>showHome</td>
<td><img src="https://github.com/arimorty/floatingsearchview/blob/develop/images/vf9cp.gif"/></td>
</tr>
<tr>
<td>noLeftAction</td>
<td><img src="https://github.com/arimorty/floatingsearchview/blob/develop/images/vf2ii.gif"/></td>
</tr>
</table>
Listen to hamburger button clicks:
mSearchView.setOnLeftMenuClickListener(
new FloatingSearchView.OnLeftMenuClickListener() { ...} );
Listen to home (back arrow) button clicks:
mSearchView.setOnHomeActionClickListener(
new FloatingSearchView.OnHomeActionClickListener() { ... });
<br/>
Configure menu items:
Add a menu resource
app:floatingSearch_menu="@menu/menu_main"
In the menu resource, set items' app:showAsAction="[insert one of the options described in the table below]"
Listen for item selections
mSearchView.setOnMenuItemClickListener(new FloatingSearchView.OnMenuItemClickListener() {
@Override
public void onMenuItemSelected(MenuItem item) {
}
});
<br/>
Configure suggestion item:
First, implement SearchSuggestion
Optional:
Set a callback for when a given suggestion is bound to the suggestion list.
mSearchView.setOnBindSuggestionCallback(new SearchSuggestionsAdapter.OnBindSuggestionCallback() {
@Override
public void onBindSuggestion(IconImageView leftIcon, BodyTextView bodyText, SearchSuggestion item, int itemPosition) {
//here you can set some attributes for the suggestion's left icon and text. For example,
//you can choose your favorite image-loading library for setting the left icon's image.
}
});
<br/>
Styling:
<img src="https://github.com/arimorty/floatingsearchview/blob/develop/images/device-2015-12-08-123103.png"/>Available styling:
<style name="SearchView">
<item name="floatingSearch_backgroundColor"></item>
<item name="floatingSearch_viewTextColor"></item>
<item name="floatingSearch_hintTextColor"></item>
<item name="floatingSearch_dividerColor"></item>
<item name="floatingSearch_clearBtnColor"></item>
<item name="floatingSearch_leftActionColor"></item>
<item name="floatingSearch_menuItemIconColor"></item>
<item name="floatingSearch_suggestionRightIconColor"></item>
<item name="floatingSearch_actionMenuOverflowColor"></item>
</style>
At this point we want to focus on stability and efficiency before adding new features. All suggestions or bug reports are welcome.
Copyright (C) 2015 Arlib
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.