floatingsearchview icon indicating copy to clipboard operation
floatingsearchview copied to clipboard

setFreezeText Not Working for searchinputview

Open LinArcX opened this issue 8 years ago • 0 comments

hi @arimorty and thanks for this great library. i have a problem for save/restoring State Of search input view. in my app, i have 4 fragment. whenever i switch between theme, use some code for retrieve last state of that fragment:

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        if (view == null){
            view = inflater.inflate(R.layout.fragment_search, container, false);
            initializeComponents(view);
        }
        return view;
    }

every thing is ok and all component use last states but searchinputview don't show hint text and cursor for type.

LinArcX avatar May 11 '17 08:05 LinArcX