MaterialSearchView icon indicating copy to clipboard operation
MaterialSearchView copied to clipboard

Issue while using MaterialSearchView inside a Fragment Activity

Open nikhiltari25 opened this issue 4 years ago • 0 comments

I am using a navigation drawer and I want to provide search functionality in one of my fragment. But, when I use MaterialSearchView inside fragment, everything works fine except for the layout part. The Search bar on expanding appears below the toolbar and has two back arrows to collapse it and both has to be pressed.

  1. On launching the activity: image

  2. On clicking on Search icon: image

  3. On clicking back button on the left of the search box: image

Below is the code of my fragment's xml file,

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context="com.mypackagename.FirstFragment">
    <FrameLayout
        android:id="@+id/frameLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/toolbar_container">
        <ExpandableListView
            android:id="@+id/elv_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </FrameLayout>
    <FrameLayout
        android:id="@+id/toolbar_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"/>

        <com.miguelcatalan.materialsearchview.MaterialSearchView
            android:id="@+id/search_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </FrameLayout>
</RelativeLayout>

nikhiltari25 avatar Oct 19 '20 16:10 nikhiltari25