GitUser4732

Results 3 comments of GitUser4732

Did you possibly forget this step? **add this code to the project level build.gradle file** ```xml allprojects { repositories { ... maven { url "https://jitpack.io" } } } ```

Add MaterialSearchBar.BUTTON_BACK as a case in your switch statement as show below. ```java @Override public void onButtonClicked(int buttonCode) { switch (buttonCode){ case MaterialSearchBar.BUTTON_NAVIGATION: drawer.openDrawer(Gravity.LEFT); break; case MaterialSearchBar.BUTTON_SPEECH: break; case MaterialSearchBar.BUTTON_BACK:...

There is a example that includes how to implement a TextWatcher Link Below (Might need to copy and paste) [https://github.com/mancj/MaterialSearchBar/blob/master/app/src/main/java/com/mancj/example/MainActivity.java](url)