Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Marchuk <alexm@maps.me>2015-09-22 20:25:31 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:07:00 +0300
commitb206273860e176e0d37b218c544e80bb9dc5c3b0 (patch)
tree147e1e91f462d4a164cfaf30afc4d73a7272311b
parent30970eec34f951ee7f4a4b37f158663998fea5e2 (diff)
[android] fix: Open keyboard on entering search.
-rw-r--r--android/src/com/mapswithme/maps/search/SearchAdapter.java2
-rw-r--r--android/src/com/mapswithme/maps/search/SearchFragment.java24
-rw-r--r--android/src/com/mapswithme/maps/widget/SearchToolbarController.java6
3 files changed, 20 insertions, 12 deletions
diff --git a/android/src/com/mapswithme/maps/search/SearchAdapter.java b/android/src/com/mapswithme/maps/search/SearchAdapter.java
index 3b013549c0..3af0115983 100644
--- a/android/src/com/mapswithme/maps/search/SearchAdapter.java
+++ b/android/src/com/mapswithme/maps/search/SearchAdapter.java
@@ -117,7 +117,7 @@ class SearchAdapter extends RecyclerView.Adapter<SearchAdapter.BaseViewHolder>
@Override
void processClick(SearchResult result, int order)
{
- mSearchFragment.setSearchQuery(result.suggestion);
+ mSearchFragment.setQuery(result.suggestion);
}
}
diff --git a/android/src/com/mapswithme/maps/search/SearchFragment.java b/android/src/com/mapswithme/maps/search/SearchFragment.java
index 2cdee88a00..9c67de8df3 100644
--- a/android/src/com/mapswithme/maps/search/SearchFragment.java
+++ b/android/src/com/mapswithme/maps/search/SearchFragment.java
@@ -121,7 +121,7 @@ public class SearchFragment extends BaseMwmFragment
@Override
protected void onUpClick()
{
- if (TextUtils.isEmpty(getSearchQuery()))
+ if (TextUtils.isEmpty(getQuery()))
{
super.onUpClick();
return;
@@ -292,19 +292,19 @@ public class SearchFragment extends BaseMwmFragment
super.onDestroy();
}
- private String getSearchQuery()
+ private String getQuery()
{
return mToolbarController.getQuery();
}
- void setSearchQuery(String text)
+ void setQuery(String text)
{
mToolbarController.setQuery(text);
}
private boolean searchActive()
{
- return !getSearchQuery().isEmpty();
+ return !getQuery().isEmpty();
}
private void readArguments()
@@ -315,7 +315,9 @@ public class SearchFragment extends BaseMwmFragment
final String query = arguments.getString(SearchActivity.EXTRA_QUERY);
if (query != null)
- setSearchQuery(query);
+ setQuery(query);
+
+ mToolbarController.activate();
}
private void hideSearch()
@@ -362,7 +364,7 @@ public class SearchFragment extends BaseMwmFragment
protected void showSingleResultOnMap(int resultIndex)
{
- final String query = getSearchQuery();
+ final String query = getQuery();
SearchRecents.add(query);
FloatingSearchToolbarController.cancelApiCall();
FloatingSearchToolbarController.saveQuery("");
@@ -374,7 +376,7 @@ public class SearchFragment extends BaseMwmFragment
protected void showAllResultsOnMap()
{
- final String query = getSearchQuery();
+ final String query = getQuery();
mLastQueryTimestamp = System.nanoTime();
SearchEngine.nativeRunInteractiveSearch(query, Language.getKeyboardLocale(), mLastQueryTimestamp);
SearchEngine.nativeShowAllResults();
@@ -389,7 +391,7 @@ public class SearchFragment extends BaseMwmFragment
{
mLastPosition.set(l.getLatitude(), l.getLongitude());
- if (!TextUtils.isEmpty(getSearchQuery()))
+ if (!TextUtils.isEmpty(getQuery()))
mSearchAdapter.notifyDataSetChanged();
}
@@ -412,10 +414,10 @@ public class SearchFragment extends BaseMwmFragment
mLastQueryTimestamp = System.nanoTime();
// TODO @yunitsky Implement more elegant solution.
if (getActivity() instanceof MwmActivity)
- SearchEngine.nativeRunInteractiveSearch(getSearchQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp);
+ SearchEngine.nativeRunInteractiveSearch(getQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp);
else
{
- final boolean searchStarted = SearchEngine.nativeRunSearch(getSearchQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp, true,
+ final boolean searchStarted = SearchEngine.nativeRunSearch(getQuery(), Language.getKeyboardLocale(), mLastQueryTimestamp, true,
mLastPosition.valid, mLastPosition.lat, mLastPosition.lon);
if (!searchStarted)
return;
@@ -462,7 +464,7 @@ public class SearchFragment extends BaseMwmFragment
{
String result = InputUtils.getBestRecognitionResult(data);
if (!TextUtils.isEmpty(result))
- setSearchQuery(result);
+ setQuery(result);
}
}
diff --git a/android/src/com/mapswithme/maps/widget/SearchToolbarController.java b/android/src/com/mapswithme/maps/widget/SearchToolbarController.java
index b132e5da2b..e62e4b7aea 100644
--- a/android/src/com/mapswithme/maps/widget/SearchToolbarController.java
+++ b/android/src/com/mapswithme/maps/widget/SearchToolbarController.java
@@ -113,6 +113,12 @@ public class SearchToolbarController extends ToolbarController
setQuery("");
}
+ public void activate()
+ {
+ mQuery.requestFocus();
+ InputUtils.showKeyboard(mQuery);
+ }
+
public void deactivate()
{
InputUtils.hideKeyboard(mQuery);