2013-07-22 19:49:36 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.home;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.R;
|
|
|
|
import org.mozilla.gecko.db.BrowserDB.URLColumns;
|
|
|
|
|
2013-07-29 22:25:46 +00:00
|
|
|
import android.app.Activity;
|
2013-07-22 19:49:36 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v4.app.DialogFragment;
|
2013-07-29 22:25:46 +00:00
|
|
|
import android.support.v4.app.LoaderManager;
|
2013-09-18 16:58:25 +00:00
|
|
|
import android.support.v4.app.LoaderManager.LoaderCallbacks;
|
2013-07-22 19:49:36 +00:00
|
|
|
import android.support.v4.content.Loader;
|
|
|
|
import android.support.v4.widget.CursorAdapter;
|
|
|
|
import android.text.Editable;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.text.TextWatcher;
|
2013-10-09 20:06:58 +00:00
|
|
|
import android.view.KeyEvent;
|
2013-07-22 19:49:36 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2013-11-04 22:39:00 +00:00
|
|
|
import android.view.WindowManager;
|
2013-07-22 19:49:36 +00:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.ListView;
|
|
|
|
|
|
|
|
/**
|
2013-09-17 20:24:48 +00:00
|
|
|
* Dialog fragment that displays frecency search results, for pinning a site, in a GridView.
|
2013-07-22 19:49:36 +00:00
|
|
|
*/
|
2013-09-17 20:24:48 +00:00
|
|
|
class PinSiteDialog extends DialogFragment {
|
2013-07-22 19:49:36 +00:00
|
|
|
// Listener for url selection
|
2013-09-17 20:24:48 +00:00
|
|
|
public static interface OnSiteSelectedListener {
|
|
|
|
public void onSiteSelected(String url, String title);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cursor loader ID for search query
|
2013-07-29 22:05:28 +00:00
|
|
|
private static final int LOADER_ID_SEARCH = 0;
|
2013-07-22 19:49:36 +00:00
|
|
|
|
|
|
|
// Holds the current search term to use in the query
|
|
|
|
private String mSearchTerm;
|
|
|
|
|
|
|
|
// Adapter for the list of search results
|
|
|
|
private SearchAdapter mAdapter;
|
|
|
|
|
|
|
|
// Search entry
|
|
|
|
private EditText mSearch;
|
|
|
|
|
|
|
|
// Search results
|
|
|
|
private ListView mList;
|
|
|
|
|
2013-09-18 16:58:25 +00:00
|
|
|
// Callbacks used for the search loader
|
2013-07-22 19:49:36 +00:00
|
|
|
private CursorLoaderCallbacks mLoaderCallbacks;
|
|
|
|
|
|
|
|
// Bookmark selected listener
|
2013-09-17 20:24:48 +00:00
|
|
|
private OnSiteSelectedListener mOnSiteSelectedListener;
|
2013-07-22 19:49:36 +00:00
|
|
|
|
2013-09-17 20:24:48 +00:00
|
|
|
public static PinSiteDialog newInstance() {
|
|
|
|
return new PinSiteDialog();
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 20:24:48 +00:00
|
|
|
private PinSiteDialog() {
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
setStyle(DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_Holo_Light_Dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
// All list views are styled to look the same with a global activity theme.
|
|
|
|
// If the style of the list changes, inflate it from an XML.
|
2013-09-17 20:24:48 +00:00
|
|
|
return inflater.inflate(R.layout.pin_site_dialog, container, false);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
|
|
|
|
mSearch = (EditText) view.findViewById(R.id.search);
|
|
|
|
mSearch.addTextChangedListener(new TextWatcher() {
|
|
|
|
@Override
|
|
|
|
public void afterTextChanged(Editable s) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
2013-11-04 22:39:00 +00:00
|
|
|
setSearchTerm(mSearch.getText().toString());
|
|
|
|
filter(mSearchTerm);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-10-09 20:06:58 +00:00
|
|
|
mSearch.setOnKeyListener(new View.OnKeyListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onKey(View v, int keyCode, KeyEvent event) {
|
|
|
|
if (keyCode != KeyEvent.KEYCODE_ENTER || mOnSiteSelectedListener == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the user manually entered a search term or URL, wrap the value in
|
|
|
|
// a special URI until we can get a valid URL for this bookmark.
|
|
|
|
final String text = mSearch.getText().toString();
|
|
|
|
final String url = TopSitesPage.encodeUserEnteredUrl(text);
|
|
|
|
mOnSiteSelectedListener.onSiteSelected(url, text);
|
|
|
|
|
|
|
|
dismiss();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-11-04 22:39:00 +00:00
|
|
|
mSearch.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onFocusChange(View v, boolean hasFocus) {
|
|
|
|
if (hasFocus) {
|
|
|
|
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-07-22 19:49:36 +00:00
|
|
|
mList = (HomeListView) view.findViewById(R.id.list);
|
|
|
|
mList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
2013-09-17 20:24:48 +00:00
|
|
|
if (mOnSiteSelectedListener != null) {
|
2013-07-22 19:49:36 +00:00
|
|
|
final Cursor c = mAdapter.getCursor();
|
|
|
|
if (c == null || !c.moveToPosition(position)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final String url = c.getString(c.getColumnIndexOrThrow(URLColumns.URL));
|
|
|
|
final String title = c.getString(c.getColumnIndexOrThrow(URLColumns.TITLE));
|
2013-09-17 20:24:48 +00:00
|
|
|
mOnSiteSelectedListener.onSiteSelected(url, title);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dismiss the fragment and the dialog.
|
|
|
|
dismiss();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle savedInstanceState) {
|
|
|
|
super.onActivityCreated(savedInstanceState);
|
|
|
|
|
2013-07-29 22:25:46 +00:00
|
|
|
final LoaderManager manager = getLoaderManager();
|
|
|
|
|
2013-07-22 19:49:36 +00:00
|
|
|
// Initialize the search adapter
|
2013-09-18 16:58:25 +00:00
|
|
|
mAdapter = new SearchAdapter(getActivity());
|
2013-07-22 19:49:36 +00:00
|
|
|
mList.setAdapter(mAdapter);
|
|
|
|
|
|
|
|
// Create callbacks before the initial loader is started
|
2013-09-18 16:58:25 +00:00
|
|
|
mLoaderCallbacks = new CursorLoaderCallbacks();
|
2013-07-22 19:49:36 +00:00
|
|
|
|
|
|
|
// Reconnect to the loader only if present
|
2013-07-29 22:25:46 +00:00
|
|
|
manager.initLoader(LOADER_ID_SEARCH, null, mLoaderCallbacks);
|
2013-07-22 19:49:36 +00:00
|
|
|
|
2013-11-04 22:39:00 +00:00
|
|
|
// If there is a search term, put it in the text field
|
|
|
|
if (!TextUtils.isEmpty(mSearchTerm)) {
|
|
|
|
mSearch.setText(mSearchTerm);
|
|
|
|
mSearch.selectAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always start with an empty filter
|
2013-07-22 19:49:36 +00:00
|
|
|
filter("");
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:39:00 +00:00
|
|
|
public void setSearchTerm(String searchTerm) {
|
2013-07-22 19:49:36 +00:00
|
|
|
mSearchTerm = searchTerm;
|
2013-11-04 22:39:00 +00:00
|
|
|
}
|
2013-07-22 19:49:36 +00:00
|
|
|
|
2013-11-04 22:39:00 +00:00
|
|
|
private void filter(String searchTerm) {
|
2013-07-22 19:49:36 +00:00
|
|
|
// Restart loaders with the new search term
|
2013-11-04 22:39:00 +00:00
|
|
|
SearchLoader.restart(getLoaderManager(), LOADER_ID_SEARCH, mLoaderCallbacks, searchTerm);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 20:24:48 +00:00
|
|
|
public void setOnSiteSelectedListener(OnSiteSelectedListener listener) {
|
|
|
|
mOnSiteSelectedListener = listener;
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static class SearchAdapter extends CursorAdapter {
|
|
|
|
private LayoutInflater mInflater;
|
|
|
|
|
|
|
|
public SearchAdapter(Context context) {
|
2013-10-14 20:34:08 +00:00
|
|
|
super(context, null, 0);
|
2013-07-22 19:49:36 +00:00
|
|
|
mInflater = LayoutInflater.from(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void bindView(View view, Context context, Cursor cursor) {
|
|
|
|
TwoLinePageRow row = (TwoLinePageRow) view;
|
2013-07-22 19:49:39 +00:00
|
|
|
row.setShowIcons(false);
|
2013-07-22 19:49:36 +00:00
|
|
|
row.updateFromCursor(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
|
|
|
return (TwoLinePageRow) mInflater.inflate(R.layout.home_item_row, parent, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 16:58:25 +00:00
|
|
|
private class CursorLoaderCallbacks implements LoaderCallbacks<Cursor> {
|
2013-07-22 19:49:36 +00:00
|
|
|
@Override
|
|
|
|
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
|
2013-09-18 16:58:25 +00:00
|
|
|
return SearchLoader.createInstance(getActivity(), args);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoadFinished(Loader<Cursor> loader, Cursor c) {
|
2013-09-18 16:58:25 +00:00
|
|
|
mAdapter.swapCursor(c);
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoaderReset(Loader<Cursor> loader) {
|
2013-09-18 16:58:25 +00:00
|
|
|
mAdapter.swapCursor(null);
|
2013-07-29 22:25:46 +00:00
|
|
|
}
|
2013-07-22 19:49:36 +00:00
|
|
|
}
|
|
|
|
}
|