I have the following SearchView:
<android.widget.SearchView
android:id="@+id/search_user_searchView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:queryHint="Search here"
app:iconifiedByDefault="true"
android:focusableInTouchMode="true"
android:background="@drawable/search_bg"/>
It looks like this before i tap on it (Hint not visible):
And like this after i tap on it (Hint visible):
How can i make the hint visible before i tap on it?