Skip to content

Commit

Permalink
Make SearchView.setQueryWithoutSubmitting() public
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivam Luz committed Nov 22, 2016
1 parent 7d1aa69 commit 94a1585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion searchview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
minSdkVersion 14
targetSdkVersion 24
versionCode 3411
versionName "3.4.1.1"
versionName "3.4.1.2"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void setQuery(CharSequence query) {
}
}

private void setQueryWithoutSubmitting(CharSequence query) {
public void setQueryWithoutSubmitting(CharSequence query) {
mEditText.setText(query);
if (query != null) {
mEditText.setSelection(mEditText.length());
Expand Down

0 comments on commit 94a1585

Please sign in to comment.