| /* |
| * Copyright (C) 2019 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package com.android.documentsui.queries; |
| |
| import android.content.Context; |
| import android.os.Bundle; |
| import android.util.Log; |
| import android.view.LayoutInflater; |
| import android.view.View; |
| import android.view.ViewGroup; |
| import android.widget.AdapterView; |
| import android.widget.ArrayAdapter; |
| import android.widget.FrameLayout; |
| import android.widget.ListView; |
| import android.widget.TextView; |
| |
| import androidx.annotation.NonNull; |
| import androidx.annotation.Nullable; |
| import androidx.fragment.app.Fragment; |
| import androidx.fragment.app.FragmentManager; |
| import androidx.fragment.app.FragmentTransaction; |
| |
| import com.android.documentsui.BaseActivity; |
| import com.android.documentsui.Injector; |
| import com.android.documentsui.R; |
| |
| import java.util.List; |
| |
| public class SearchFragment extends Fragment { |
| |
| private static final String TAG = "SearchFragment"; |
| private static final String KEY_QUERY = "query"; |
| private static final int MAX_DISPLAY_ITEMS = 8; |
| |
| private SearchViewManager mSearchViewManager; |
| |
| private ViewGroup mSearchChipGroup; |
| private ListView mListView; |
| private ArrayAdapter<String> mAdapter; |
| |
| private List<String> mHistoryList; |
| |
| public static void showFragment(FragmentManager fm, String initQuery) { |
| if (fm.isStateSaved()) { |
| Log.w(TAG, "Skip show because state saved"); |
| return; |
| } |
| |
| final SearchFragment fragment = new SearchFragment(); |
| final Bundle args = new Bundle(); |
| args.putString(KEY_QUERY, initQuery); |
| fragment.setArguments(args); |
| |
| final FragmentTransaction ft = fm.beginTransaction(); |
| ft.replace(getFragmentId(), fragment, TAG); |
| ft.commitNow(); |
| } |
| |
| public static void dismissFragment(FragmentManager fm) { |
| SearchFragment fragment = get(fm); |
| if (fragment != null && fragment.getActivity() != null) { |
| fragment.dismiss(); |
| } |
| } |
| |
| public static SearchFragment get(FragmentManager fm) { |
| final Fragment fragment = fm.findFragmentByTag(TAG); |
| return fragment instanceof SearchFragment |
| ? (SearchFragment) fragment |
| : null; |
| } |
| |
| @Nullable |
| @Override |
| public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, |
| @Nullable Bundle savedInstanceState) { |
| final View view = inflater.inflate(R.layout.fragment_search, container, false); |
| |
| mSearchChipGroup = view.findViewById(R.id.search_chip_group); |
| mListView = view.findViewById(R.id.history_list); |
| |
| return view; |
| } |
| |
| @Override |
| public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { |
| super.onViewCreated(view, savedInstanceState); |
| |
| final BaseActivity activity = (BaseActivity) getActivity(); |
| final Injector injector = activity.getInjector(); |
| mSearchViewManager = injector.searchManager; |
| mSearchViewManager.setFragmentManager(this.getParentFragmentManager()); |
| |
| final String currentQuery = getArguments().getString(KEY_QUERY, ""); |
| |
| mHistoryList = SearchHistoryManager.getInstance( |
| getContext().getApplicationContext()).getHistoryList(currentQuery); |
| |
| mSearchViewManager.bindChips(mSearchChipGroup); |
| if (mSearchChipGroup.getVisibility() == View.VISIBLE) { |
| for (int i = 0, size = mSearchChipGroup.getChildCount(); i < size; i++) { |
| mSearchChipGroup.getChildAt(i).setOnClickListener(this::onChipClicked); |
| } |
| } |
| |
| mAdapter = new HistoryListAdapter(getContext(), mHistoryList); |
| mListView.setAdapter(mAdapter); |
| mListView.setOnItemClickListener(this::onHistoryItemClicked); |
| |
| View toolbar = getActivity().findViewById(R.id.toolbar); |
| View collapsingBarLayout = getActivity().findViewById(R.id.collapsing_toolbar); |
| if (toolbar != null && collapsingBarLayout != null) { |
| // If collapsingBarLayout is used (i.e. not in Tablet mode), |
| // need to align top with the bottom of search bar. |
| FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams( |
| ViewGroup.LayoutParams.MATCH_PARENT, |
| ViewGroup.LayoutParams.MATCH_PARENT); |
| layoutParams.setMargins(0, getResources().getDimensionPixelSize( |
| R.dimen.action_bar_margin) + toolbar.getLayoutParams().height, 0, 0); |
| getView().setLayoutParams(layoutParams); |
| } |
| |
| updateDirectoryVisibility(View.GONE); |
| } |
| |
| private static int getFragmentId() { |
| return R.id.container_search_fragment; |
| } |
| |
| private void onChipClicked(View view) { |
| final Object tag = view.getTag(); |
| if (tag instanceof SearchChipData) { |
| mSearchViewManager.onMirrorChipClick((SearchChipData) tag); |
| } |
| } |
| |
| private void onHistoryItemClicked(AdapterView<?> parent, View view, int position, long id) { |
| final String item = mHistoryList.get(position); |
| mSearchViewManager.setHistorySearch(); |
| mSearchViewManager.setCurrentSearch(item); |
| mSearchViewManager.restoreSearch(/* keepFocus= */ false); |
| } |
| |
| private void dismiss() { |
| if (getActivity() == null) { |
| // Fragment has already been detached from activity. |
| return; |
| } |
| |
| updateDirectoryVisibility(View.VISIBLE); |
| |
| getParentFragmentManager().beginTransaction() |
| .remove(this) |
| .commitAllowingStateLoss(); |
| } |
| |
| private void updateDirectoryVisibility(int visibility) { |
| View directoryHeader = getActivity().findViewById(R.id.directory_header); |
| if (directoryHeader != null) { |
| directoryHeader.setVisibility(visibility); |
| } |
| |
| View directoryContainer = getActivity().findViewById(R.id.container_directory); |
| if (directoryContainer != null) { |
| directoryContainer.setVisibility(visibility); |
| } |
| } |
| |
| private class HistoryListAdapter extends ArrayAdapter<String> { |
| |
| public HistoryListAdapter(Context context, List<String> list) { |
| super(context, R.layout.item_history, list); |
| } |
| |
| @Override |
| public View getView(int position, View convertView, ViewGroup parent) { |
| if (convertView == null) { |
| convertView = getLayoutInflater().inflate(R.layout.item_history, parent, false); |
| } |
| final String history = getItem(position); |
| final TextView text = convertView.findViewById(android.R.id.title); |
| final View button = convertView.findViewById(android.R.id.icon); |
| |
| text.setText(history); |
| button.setOnClickListener(v -> { |
| mSearchViewManager.removeHistory(history); |
| mHistoryList.remove(history); |
| notifyDataSetChanged(); |
| }); |
| button.setContentDescription( |
| getContext().getString(R.string.delete_search_history, history)); |
| |
| return convertView; |
| } |
| |
| @Override |
| public int getCount() { |
| final int count = super.getCount(); |
| return count > MAX_DISPLAY_ITEMS ? MAX_DISPLAY_ITEMS : count; |
| } |
| } |
| } |