Giter Site home page Giter Site logo

persistentsearchview's Introduction

DEPRECATED: THIS PROJECT IS NO LONGER MAINTAINED

Persistent Search

A library that implements Google Play like PersistentSearch view.

  • API: 14+
  • 3 modes: Toolbar with drawer button, MenuItem and Toolbar with back button
  • MenuItem mode reveal animation (Using ozodrukh/CircularReveal)
  • Voice recognition support.
  • Use android.support.v7.widget.CardView to draw background and shadow, you can set persistentSV_searchCardElevation to modify shadow size.

Demo

Get it on Google Play

Or APK Here

Integration

You can import from jCenter():

compile 'org.cryse.widget:persistentsearchview:1.0.4@aar'

Custom Attributes

<declare-styleable name="PersistentSearchView">
	 <attr name="persistentSV_searchTextColor" format="color"/>
	<attr name="persistentSV_logoDrawable" format="reference"/>
	<attr name="persistentSV_logoString" format="string"/>
	<attr name="persistentSV_editTextColor" format="color"/>
	<attr name="persistentSV_editHintText" format="string"/>
	<attr name="persistentSV_editHintTextColor" format="color"/>
	<attr name="persistentSV_searchCardElevation" format="dimension"/>
	<attr name="persistentSV_displayMode" format="enum">
		<enum name="menuItem" value="0" />
		<enum name="toolbar" value="1" />
	</attr>
	<attr name="persistentSV_homeButtonColor" format="color"/>
	<attr name="persistentSV_customToolbarHeight" format="dimension"/>
	<attr name="persistentSV_homeButtonMode" format="enum">
		<enum name="arrow" value="0" />
		<enum name="burger" value="1" />
	</attr>
</declare-styleable>

Note:

  • CardView content height is 48dp

  • android:elevation attribute only decide z-axis position of SearchView, but not draw any shadow, shadow size is decided by app:persistentSV_searchCardElevation.

  • the CardView vertical padding equals (actionBarSize - cardViewHeight) / 2

  • the CardView horizontal padding have two values:

    • Toolbar mode: 8dp
    • MenuItem mode: 4dp

    you can change persistentSV_customToolbarHeight to change vertical padding (for example, 64dp height will get (64 - 48) / 2 = 8dp vertical padding).

Sample Usages

Display as Toolbar with drawer(burger) button

app:persistentSV_displayMode="toolbar" app:persistentSV_homeButtonMode="burger"

<org.cryse.widget.persistentsearch.PersistentSearchView
	android:id="@+id/searchview"
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:layout_alignParentTop="true"
	android:elevation="4dp"
	app:persistentSV_logoDrawable="@drawable/ic_logo"
	app:persistentSV_searchTextColor="?android:textColorPrimary"
	app:persistentSV_editTextColor="?android:textColorPrimary"
	app:persistentSV_editHintText="Search"
	app:persistentSV_editHintTextColor="?android:textColorHint"
	app:persistentSV_displayMode="toolbar"
	app:persistentSV_homeButtonMode="burger"
	app:persistentSV_searchCardElevation="2dp"
	app:persistentSV_customToolbarHeight="64dp"/>

Display as Toolbar with back arrow

Change the attribute in layout file:

app:persistentSV_displayMode="toolbar" app:persistentSV_homeButtonMode="arrow"

Display as MenuItem

Change the attributes in layout file:

android:visibility="gone" app:persistentSV_displayMode="menuItem"

When you need to show it, call openSearch(View view) to show SearchView, start position is determinate by view param, for example:

View menuItemView = findViewById(R.id.action_search);
mSearchView.openSearch(menuItemView);

When you need to hide it, call searchView.closeSearch()

Voice Recognition

If you want use voice recognition, just check the availability and setup:

VoiceRecognitionDelegate delegate = new DefaultVoiceRecognizerDelegate(this, VOICE_RECOGNITION_REQUEST_CODE);
if(delegate.isVoiceRecognitionAvailable()) {
	mSearchView.setVoiceRecognitionDelegate(delegate);
}

then in onActivityResult():

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
	if (requestCode == VOICE_RECOGNITION_REQUEST_CODE && resultCode == RESULT_OK) {
		ArrayList<String> matches = data
			.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
		mSearchView.populateEditText(matches);  // Set result to PersistentSearchView
	}
	super.onActivityResult(requestCode, resultCode, data);
}

If you don't want to use default voice recognizer, you could inherit from abstract class VoiceRecognitionDelegate and implement your own recognizer.

Screenshot

Screenshot1 Screenshot2

Thanks

License

Copyright 2015 Cryse Hillmes

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.

persistentsearchview's People

Contributors

crysehillmes avatar kee23 avatar raphaelbussa avatar toorh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

persistentsearchview's Issues

Change cursor color

I want to change the cursor color which is set to default colorAccent. any possible way i can change it without interfering with colorAccent?

Sample code suggestions don't work the same as Play Store sample app

When you tap one of the default suggestions they don't generate any kind of result, the tap is just logged in the console but not output is generated at all. I tried sending the suggestion title to onSearch() but it didn't produce the expected behaviour. I was hoping to see how the behaviour from the Sample app in the Play Store was implemented. Am I missing something here?

Set searchview padding

Is there a way I can override the padding of the searchview from the source?

Default build is padded, but I couldn't find where to set this in the code, nor in layout. I want the searchview to touch the screen's edge.

EDIT: I noticed that when set to menuItem mode, there is no left and right padding. But not in toolbar mode.

RTL Support

Hi, this is the best and simplest I have ever tested from all SearchView libraries.

But there is a problem on RTL layouts, the logo gets disappeared, and search suggestions directions stays on left, can you please tell us how to fix this?

Appreciate your kind help.

Thanks.

People search or Topic search

I need to different server call for people and topic so i need to know the search query for people kor topic.How can i find that any idea? Thanks in advance

Problem with attributes

I add

<org.cryse.widget.persistentsearch.PersistentSearchView
        android:layout_width="match_parent"
        android:id="@+id/searchview"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:elevation="6dp"
        app:persistentSV_displayMode="menuItem"
        app:persistentSV_searchTextColor="#DE000000"
        app:persistentSV_editTextColor="#DE000000"
        app:persistentSV_editHintText="Search"
        app:persistentSV_editHintTextColor="#61000000"
        app:persistentSV_searchCardElevation="4dp"
        app:persistentSV_customToolbarHeight="56dp"/>

to my XML and

xmlns:app="http://schemas.android.com/apk/res-auto"
to my root layout in the same XML

And I get a lot of errors. In my styles.xml I add

<declare-styleable name="PersistentSearchView">
        <attr name="persistentSV_searchTextColor" format="color"/>
        <attr name="persistentSV_logoDrawable" format="reference"/>
        <attr name="persistentSV_logoString" format="string"/>
        <attr name="persistentSV_editTextColor" format="color"/>
        <attr name="persistentSV_editHintText" format="string"/>
        <attr name="persistentSV_editHintTextColor" format="color"/>
        <attr name="persistentSV_searchCardElevation" format="dimension"/>
        <attr name="persistentSV_displayMode" format="enum">
            <enum name="menuItem" value="0" />
            <enum name="toolbar" value="1" />
        </attr>
        <attr name="persistentSV_homeButtonColor" format="color"/>
        <attr name="persistentSV_customToolbarHeight" format="dimension"/>
        <attr name="persistentSV_homeButtonMode" format="enum">
            <enum name="arrow" value="0" />
            <enum name="burger" value="1" />
        </attr>
    </declare-styleable>

its compile but when I run

Caused by: java.lang.NoClassDefFoundError: org.cryse.widget.persistentsearch.R$attr


java.lang.ExceptionInInitializerError
                                                                                 at java.lang.reflect.Constructor.constructNative(Native Method)
                                                                                 at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
                                                                                 at android.view.LayoutInflater.createView(LayoutInflater.java:587)
                                                                                 at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:687)
                                                                                 at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
                                                                                 at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:280)
                                                                                 at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:140)
                                                                                 at com.coffeeandcookies.niclis.ui.Pedido.CategoriesActivity.onCreate(CategoriesActivity.java:68)
                                                                                 at android.app.Activity.performCreate(Activity.java:5008)
                                                                                 at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
                                                                                 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
                                                                                 at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
                                                                                 at android.app.ActivityThread.access$600(ActivityThread.java:130)
                                                                                 at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
                                                                                 at android.os.Handler.dispatchMessage(Handler.java:99)
                                                                                 at android.os.Looper.loop(Looper.java:137)
                                                                                 at android.app.ActivityThread.main(ActivityThread.java:4745)
                                                                                 at java.lang.reflect.Method.invokeNative(Native Method)
                                                                                 at java.lang.reflect.Method.invoke(Method.java:511)
                                                                                 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
                                                                                 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
                                                                                 at dalvik.system.NativeStart.main(Native Method)
                                                                              Caused by: java.lang.NoClassDefFoundError: org.cryse.widget.persistentsearch.R$attr
                                                                                 at org.cryse.widget.persistentsearch.PersistentSearchView.<clinit>(PersistentSearchView.java:50)
                                                                                 at java.lang.reflect.Constructor.constructNative(Native Method) 
                                                                                 at java.lang.reflect.Constructor.newInstance(Constructor.java:417) 
                                                                                 at android.view.LayoutInflater.createView(LayoutInflater.java:587) 
                                                                                 at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:687) 
                                                                                 at android.view.LayoutInflater.rInflate(LayoutInflater.java:746) 
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:489) 
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:396) 
                                                                                 at android.view.LayoutInflater.inflate(LayoutInflater.java:352) 
                                                                                 at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:280) 
                                                                                 at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:140) 
                                                                                 at com.coffeeandcookies.niclis.ui.Pedido.CategoriesActivity.onCreate(CategoriesActivity.java:68) 
                                                                                 at android.app.Activity.performCreate(Activity.java:5008) 
                                                                                 at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079) 
                                                                                 at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023) 
                                                                                 at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084) 
                                                                                 at android.app.ActivityThread.access$600(ActivityThread.java:130) 
                                                                                 at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195) 
                                                                                 at android.os.Handler.dispatchMessage(Handler.java:99) 
                                                                                 at android.os.Looper.loop(Looper.java:137) 
                                                                                 at android.app.ActivityThread.main(ActivityThread.java:4745) 
                                                                                 at java.lang.reflect.Method.invokeNative(Native Method) 
                                                                                 at java.lang.reflect.Method.invoke(Method.java:511) 
                                                                                 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786) 
                                                                                 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 
                                                                                 at dalvik.system.NativeStart.main(Native Method) 


Change background color of search view

Hi!

Awesome and very useful library!
Is there any ability to change background color of search view except changing layout resource in PersistentSearchView.init? It would be great if you add this feature!

App Crash When Search Using mic

Hi @crysehillmes,
Thanks for this Awesome Library

I am having One Issue,
When App is running on Android Version 7.0 or 7.1.2 then the Mic is Working Fine but when I try to run the app in Version 6.0 and 5.0 and then press mic and Speak Something,
App is getting Crash
Here is the Crash Report
screenshot 157
Any Help will be Appreciated

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.