diff --git a/android/res/layout-sw600dp/fragment_downloader.xml b/android/res/layout-sw600dp/fragment_downloader.xml index 50e8f0dc43..cb8fd24d55 100644 --- a/android/res/layout-sw600dp/fragment_downloader.xml +++ b/android/res/layout-sw600dp/fragment_downloader.xml @@ -6,10 +6,11 @@ + android:theme="@style/MwmWidget.ToolbarTheme"> + android:layout_height="?attr/actionBarSize" + android:theme="@style/MwmWidget.ToolbarTheme"> + android:theme="@style/MwmWidget.ToolbarTheme"> + android:theme="@style/MwmWidget.ToolbarTheme"> + android:singleLine="true" + android:textCursorDrawable="@drawable/cursor_drawable"/> - + android:background="?attr/selectableItemBackgroundBorderless" + android:contentDescription="@null" + android:padding="@dimen/margin_medium" + android:src="@drawable/ic_close_w"/> - - - - + \ No newline at end of file diff --git a/android/res/layout/toolbar_default.xml b/android/res/layout/toolbar_default.xml index 2e8070fd48..198828d961 100644 --- a/android/res/layout/toolbar_default.xml +++ b/android/res/layout/toolbar_default.xml @@ -1,9 +1,8 @@ - \ No newline at end of file + android:theme="@style/MwmWidget.ToolbarTheme"/> \ No newline at end of file diff --git a/android/res/layout/toolbar_elevated.xml b/android/res/layout/toolbar_elevated.xml index b8e92b2d63..730027dba1 100644 --- a/android/res/layout/toolbar_elevated.xml +++ b/android/res/layout/toolbar_elevated.xml @@ -6,15 +6,14 @@ + android:theme="@style/MwmWidget.ToolbarTheme"/> - \ No newline at end of file diff --git a/android/res/layout/toolbar_with_search.xml b/android/res/layout/toolbar_with_search.xml index b080132e7f..199b7e7f7f 100644 --- a/android/res/layout/toolbar_with_search.xml +++ b/android/res/layout/toolbar_with_search.xml @@ -1,13 +1,12 @@ - + android:theme="@style/MwmWidget.ToolbarTheme"> @string/robotoRegular - + + - @@ -272,6 +277,10 @@ ?attr/colorAccent + + \ No newline at end of file diff --git a/android/src/com/mapswithme/maps/search/SearchFragment.java b/android/src/com/mapswithme/maps/search/SearchFragment.java index 1b4e6f462d..426adc436e 100644 --- a/android/src/com/mapswithme/maps/search/SearchFragment.java +++ b/android/src/com/mapswithme/maps/search/SearchFragment.java @@ -145,13 +145,13 @@ public class SearchFragment extends BaseMwmListFragment implements View.OnClickL if (s.length() == 0) { - UiUtils.invisible(mBtnClearQuery); + UiUtils.hide(mBtnClearQuery); UiUtils.showIf(InputUtils.isVoiceInputSupported(getActivity()), mBtnVoice); } else { UiUtils.show(mBtnClearQuery); - UiUtils.invisible(mBtnVoice); + UiUtils.hide(mBtnVoice); } }