For some reason my search icon is positioned a little bit higher than the settings icon. How do I lower the position of the search icon to match the settings icon in actionBar. Here's what I mean:
Here's my code for search icon, I got this icon from the Android Studio Image Asset Clip Art.
<item
android:id="@+id/menuSearch"
android:title="@string/search"
android:hint="@string/search"
android:icon="@drawable/ic_search_black_24dp"
app:showAsAction="ifRoom|collapseActionView"
app:actionViewClass="android.support.v7.widget.SearchView"
/>
How do I lower the search icon ?