mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
667 lines
25 KiB
Java
667 lines
25 KiB
Java
/* -*- 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;
|
|
|
|
import org.mozilla.gecko.db.BrowserDB;
|
|
import org.mozilla.gecko.util.GeckoAsyncTask;
|
|
|
|
import android.app.Activity;
|
|
import android.app.AlertDialog;
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.content.res.Configuration;
|
|
import android.graphics.Bitmap;
|
|
import android.graphics.BitmapFactory;
|
|
import android.os.AsyncTask;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.text.Editable;
|
|
import android.text.InputType;
|
|
import android.text.Spanned;
|
|
import android.text.TextUtils;
|
|
import android.text.TextWatcher;
|
|
import android.util.Log;
|
|
import android.view.ContextMenu;
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
|
import android.view.KeyEvent;
|
|
import android.view.LayoutInflater;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.view.inputmethod.EditorInfo;
|
|
import android.view.inputmethod.InputMethodManager;
|
|
import android.widget.Button;
|
|
import android.widget.EditText;
|
|
import android.widget.ImageButton;
|
|
import android.widget.ListView;
|
|
import android.widget.TabWidget;
|
|
import android.widget.Toast;
|
|
|
|
import java.net.URLEncoder;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
|
|
public class AwesomeBar extends GeckoActivity {
|
|
private static final String LOGTAG = "GeckoAwesomeBar";
|
|
|
|
private static final Collection<String> sSwypeInputMethods = Arrays.asList(new String[] {
|
|
InputMethods.METHOD_SWYPE,
|
|
InputMethods.METHOD_SWYPE_BETA,
|
|
});
|
|
|
|
static final String URL_KEY = "url";
|
|
static final String CURRENT_URL_KEY = "currenturl";
|
|
static final String TARGET_KEY = "target";
|
|
static final String SEARCH_KEY = "search";
|
|
static final String USER_ENTERED_KEY = "user_entered";
|
|
static final String READING_LIST_KEY = "reading_list";
|
|
static enum Target { NEW_TAB, CURRENT_TAB };
|
|
|
|
private String mTarget;
|
|
private AwesomeBarTabs mAwesomeTabs;
|
|
private CustomEditText mText;
|
|
private ImageButton mGoButton;
|
|
private ContentResolver mResolver;
|
|
private ContextMenuSubject mContextMenuSubject;
|
|
private boolean mIsUsingSwype;
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
|
|
Log.d(LOGTAG, "creating awesomebar");
|
|
|
|
mResolver = Tabs.getInstance().getContentResolver();
|
|
LayoutInflater.from(this).setFactory(GeckoViewsFactory.getInstance());
|
|
|
|
setContentView(R.layout.awesomebar);
|
|
|
|
mGoButton = (ImageButton) findViewById(R.id.awesomebar_button);
|
|
mText = (CustomEditText) findViewById(R.id.awesomebar_text);
|
|
|
|
TabWidget tabWidget = (TabWidget) findViewById(android.R.id.tabs);
|
|
tabWidget.setDividerDrawable(null);
|
|
|
|
mAwesomeTabs = (AwesomeBarTabs) findViewById(R.id.awesomebar_tabs);
|
|
mAwesomeTabs.setOnUrlOpenListener(new AwesomeBarTabs.OnUrlOpenListener() {
|
|
public void onUrlOpen(String url) {
|
|
openUrlAndFinish(url);
|
|
}
|
|
|
|
public void onSearch(String engine, String text) {
|
|
openSearchAndFinish(text, engine);
|
|
}
|
|
|
|
public void onEditSuggestion(final String text) {
|
|
GeckoApp.mAppContext.mMainHandler.post(new Runnable() {
|
|
public void run() {
|
|
mText.setText(text);
|
|
mText.setSelection(mText.getText().length());
|
|
mText.requestFocus();
|
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
imm.showSoftInput(mText, InputMethodManager.SHOW_IMPLICIT);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
mGoButton.setOnClickListener(new Button.OnClickListener() {
|
|
public void onClick(View v) {
|
|
openUserEnteredAndFinish(mText.getText().toString());
|
|
}
|
|
});
|
|
|
|
Intent intent = getIntent();
|
|
String currentUrl = intent.getStringExtra(CURRENT_URL_KEY);
|
|
mTarget = intent.getStringExtra(TARGET_KEY);
|
|
if (currentUrl != null) {
|
|
mText.setText(currentUrl);
|
|
mText.selectAll();
|
|
}
|
|
|
|
mText.setOnKeyPreImeListener(new CustomEditText.OnKeyPreImeListener() {
|
|
public boolean onKeyPreIme(View v, int keyCode, KeyEvent event) {
|
|
// We only want to process one event per tap
|
|
if (event.getAction() != KeyEvent.ACTION_DOWN)
|
|
return false;
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_ENTER) {
|
|
// If the AwesomeBar has a composition string, don't submit the text yet.
|
|
// ENTER is needed to commit the composition string.
|
|
Editable content = mText.getText();
|
|
if (!hasCompositionString(content)) {
|
|
openUserEnteredAndFinish(content.toString());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// If input method is in fullscreen mode, we want to dismiss
|
|
// it instead of closing awesomebar straight away.
|
|
InputMethodManager imm =
|
|
(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
if (keyCode == KeyEvent.KEYCODE_BACK && !imm.isFullscreenMode()) {
|
|
// Let mAwesomeTabs try to handle the back press, since we may be in a
|
|
// bookmarks sub-folder.
|
|
if (mAwesomeTabs.onBackPressed())
|
|
return true;
|
|
|
|
// If mAwesomeTabs.onBackPressed() returned false, we didn't move up
|
|
// a folder level, so just exit the activity.
|
|
cancelAndFinish();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
});
|
|
|
|
mText.addTextChangedListener(new TextWatcher() {
|
|
public void afterTextChanged(Editable s) {
|
|
String text = s.toString();
|
|
mAwesomeTabs.filter(text);
|
|
|
|
// If the AwesomeBar has a composition string, don't call updateGoButton().
|
|
// That method resets IME and composition state will be broken.
|
|
if (!hasCompositionString(s)) {
|
|
updateGoButton(text);
|
|
}
|
|
|
|
if (Build.VERSION.SDK_INT >= 11) {
|
|
getActionBar().hide();
|
|
}
|
|
}
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count,
|
|
int after) {
|
|
// do nothing
|
|
}
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before,
|
|
int count) {
|
|
// do nothing
|
|
}
|
|
});
|
|
|
|
mText.setOnKeyListener(new View.OnKeyListener() {
|
|
public boolean onKey(View v, int keyCode, KeyEvent event) {
|
|
if (keyCode == KeyEvent.KEYCODE_ENTER) {
|
|
if (event.getAction() != KeyEvent.ACTION_DOWN)
|
|
return true;
|
|
|
|
openUserEnteredAndFinish(mText.getText().toString());
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
|
|
mText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
|
public void onFocusChange(View v, boolean hasFocus) {
|
|
if (v == null || hasFocus) {
|
|
return;
|
|
}
|
|
|
|
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
try {
|
|
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
|
|
} catch (NullPointerException e) {
|
|
Log.e(LOGTAG, "InputMethodManagerService, why are you throwing"
|
|
+ " a NullPointerException? See bug 782096", e);
|
|
}
|
|
}
|
|
});
|
|
|
|
mText.setOnLongClickListener(new View.OnLongClickListener() {
|
|
@Override
|
|
public boolean onLongClick(View v) {
|
|
if (Build.VERSION.SDK_INT >= 11) {
|
|
CustomEditText text = (CustomEditText) v;
|
|
|
|
if (text.getSelectionStart() == text.getSelectionEnd())
|
|
return false;
|
|
|
|
getActionBar().show();
|
|
return false;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
});
|
|
|
|
mText.setOnSelectionChangedListener(new CustomEditText.OnSelectionChangedListener() {
|
|
@Override
|
|
public void onSelectionChanged(int selStart, int selEnd) {
|
|
if (Build.VERSION.SDK_INT >= 11 && selStart == selEnd) {
|
|
getActionBar().hide();
|
|
}
|
|
}
|
|
});
|
|
|
|
boolean showReadingList = intent.getBooleanExtra(READING_LIST_KEY, false);
|
|
if (showReadingList) {
|
|
BookmarksTab bookmarksTab = mAwesomeTabs.getBookmarksTab();
|
|
bookmarksTab.setShowReadingList(true);
|
|
mAwesomeTabs.setCurrentTabByTag(bookmarksTab.getTag());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onWindowFocusChanged(boolean hasFocus) {
|
|
super.onWindowFocusChanged(hasFocus);
|
|
|
|
// The Awesome Bar will receive focus when the Awesome Screen first opens or after the user
|
|
// closes the "Select Input Method" window. If the input method changes to or from Swype,
|
|
// then toggle the URL mode flag. Swype's URL mode disables the automatic word spacing that
|
|
// Swype users expect when entering search queries, but does not add any special VKB keys
|
|
// like ".com" or "/" that would be useful for entering URLs.
|
|
|
|
if (!hasFocus)
|
|
return;
|
|
|
|
boolean wasUsingSwype = mIsUsingSwype;
|
|
mIsUsingSwype = sSwypeInputMethods.contains(InputMethods.getCurrentInputMethod(this));
|
|
|
|
if (mIsUsingSwype == wasUsingSwype)
|
|
return;
|
|
|
|
int currentInputType = mText.getInputType();
|
|
int newInputType = mIsUsingSwype
|
|
? (currentInputType & ~InputType.TYPE_TEXT_VARIATION_URI) // URL=OFF
|
|
: (currentInputType | InputType.TYPE_TEXT_VARIATION_URI); // URL=ON
|
|
|
|
mText.setRawInputType(newInputType);
|
|
}
|
|
|
|
@Override
|
|
public void onConfigurationChanged(Configuration newConfiguration) {
|
|
super.onConfigurationChanged(newConfiguration);
|
|
}
|
|
|
|
@Override
|
|
public boolean onSearchRequested() {
|
|
cancelAndFinish();
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
* This method tries to guess if the given string could be a search query or URL
|
|
* Search examples:
|
|
* foo
|
|
* foo bar.com
|
|
* foo http://bar.com
|
|
*
|
|
* URL examples
|
|
* foo.com
|
|
* foo.c
|
|
* :foo
|
|
* http://foo.com bar
|
|
*/
|
|
private boolean isSearchUrl(String text) {
|
|
text = text.trim();
|
|
if (text.length() == 0)
|
|
return false;
|
|
|
|
int colon = text.indexOf(':');
|
|
int dot = text.indexOf('.');
|
|
int space = text.indexOf(' ');
|
|
|
|
// If a space is found before any dot or colon, we assume this is a search query
|
|
boolean spacedOut = space > -1 && (space < colon || space < dot);
|
|
|
|
return spacedOut || (dot == -1 && colon == -1);
|
|
}
|
|
|
|
private void updateGoButton(String text) {
|
|
if (text.length() == 0) {
|
|
mGoButton.setVisibility(View.GONE);
|
|
return;
|
|
}
|
|
|
|
mGoButton.setVisibility(View.VISIBLE);
|
|
|
|
int imageResource = R.drawable.ic_awesomebar_go;
|
|
String contentDescription = getString(R.string.go);
|
|
int imeAction = EditorInfo.IME_ACTION_GO;
|
|
if (isSearchUrl(text)) {
|
|
imageResource = R.drawable.ic_awesomebar_search;
|
|
contentDescription = getString(R.string.search);
|
|
imeAction = EditorInfo.IME_ACTION_SEARCH;
|
|
}
|
|
mGoButton.setImageResource(imageResource);
|
|
mGoButton.setContentDescription(contentDescription);
|
|
|
|
int actionBits = mText.getImeOptions() & EditorInfo.IME_MASK_ACTION;
|
|
if (actionBits != imeAction) {
|
|
InputMethodManager imm = (InputMethodManager) mText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
int optionBits = mText.getImeOptions() & ~EditorInfo.IME_MASK_ACTION;
|
|
mText.setImeOptions(optionBits | imeAction);
|
|
imm.restartInput(mText);
|
|
}
|
|
}
|
|
|
|
private void cancelAndFinish() {
|
|
setResult(Activity.RESULT_CANCELED);
|
|
finish();
|
|
overridePendingTransition(0, 0);
|
|
}
|
|
|
|
private void finishWithResult(Intent intent) {
|
|
setResult(Activity.RESULT_OK, intent);
|
|
finish();
|
|
overridePendingTransition(0, 0);
|
|
}
|
|
|
|
private void openUrlAndFinish(String url) {
|
|
Intent resultIntent = new Intent();
|
|
resultIntent.putExtra(URL_KEY, url);
|
|
resultIntent.putExtra(TARGET_KEY, mTarget);
|
|
finishWithResult(resultIntent);
|
|
}
|
|
|
|
private void openUserEnteredAndFinish(String url) {
|
|
int index = url.indexOf(' ');
|
|
if (index != -1) {
|
|
String keywordUrl = BrowserDB.getUrlForKeyword(mResolver, url.substring(0, index));
|
|
if (keywordUrl != null && keywordUrl.contains("%s")) {
|
|
String search = URLEncoder.encode(url.substring(index + 1));
|
|
url = keywordUrl.replace("%s", search);
|
|
}
|
|
}
|
|
|
|
Intent resultIntent = new Intent();
|
|
resultIntent.putExtra(URL_KEY, url);
|
|
resultIntent.putExtra(TARGET_KEY, mTarget);
|
|
resultIntent.putExtra(USER_ENTERED_KEY, true);
|
|
finishWithResult(resultIntent);
|
|
}
|
|
|
|
private void openSearchAndFinish(String url, String engine) {
|
|
Intent resultIntent = new Intent();
|
|
resultIntent.putExtra(URL_KEY, url);
|
|
resultIntent.putExtra(TARGET_KEY, mTarget);
|
|
resultIntent.putExtra(SEARCH_KEY, engine);
|
|
finishWithResult(resultIntent);
|
|
}
|
|
|
|
@Override
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
// Galaxy Note sends key events for the stylus that are outside of the
|
|
// valid keyCode range (see bug 758427)
|
|
if (keyCode > KeyEvent.getMaxKeyCode())
|
|
return true;
|
|
|
|
// This method is called only if the key event was not handled
|
|
// by any of the views, which usually means the edit box lost focus
|
|
if (keyCode == KeyEvent.KEYCODE_BACK ||
|
|
keyCode == KeyEvent.KEYCODE_MENU ||
|
|
keyCode == KeyEvent.KEYCODE_DPAD_UP ||
|
|
keyCode == KeyEvent.KEYCODE_DPAD_DOWN ||
|
|
keyCode == KeyEvent.KEYCODE_DPAD_LEFT ||
|
|
keyCode == KeyEvent.KEYCODE_DPAD_RIGHT ||
|
|
keyCode == KeyEvent.KEYCODE_DPAD_CENTER ||
|
|
keyCode == KeyEvent.KEYCODE_DEL ||
|
|
keyCode == KeyEvent.KEYCODE_VOLUME_UP ||
|
|
keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
|
|
return super.onKeyDown(keyCode, event);
|
|
} else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
|
|
mText.setText("");
|
|
mText.requestFocus();
|
|
InputMethodManager imm = (InputMethodManager) mText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
imm.showSoftInput(mText, InputMethodManager.SHOW_IMPLICIT);
|
|
return true;
|
|
} else {
|
|
int selStart = -1;
|
|
int selEnd = -1;
|
|
if (mText.hasSelection()) {
|
|
selStart = mText.getSelectionStart();
|
|
selEnd = mText.getSelectionEnd();
|
|
}
|
|
|
|
if (selStart >= 0) {
|
|
// Restore the selection, which gets lost due to the focus switch
|
|
mText.setSelection(selStart, selEnd);
|
|
}
|
|
|
|
// Manually dispatch the key event to the AwesomeBar before restoring (default) input
|
|
// focus. dispatchKeyEvent() will update AwesomeBar's cursor position.
|
|
mText.dispatchKeyEvent(event);
|
|
int newCursorPos = mText.getSelectionEnd();
|
|
|
|
// requestFocusFromTouch() will select all AwesomeBar text, so we must restore cursor
|
|
// position so subsequent typing does not overwrite all text.
|
|
mText.requestFocusFromTouch();
|
|
mText.setSelection(newCursorPos);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
if (mText != null && mText.getText() != null)
|
|
updateGoButton(mText.getText().toString());
|
|
|
|
// Invlidate the cached value that keeps track of whether or
|
|
// not desktop bookmarks exist
|
|
BrowserDB.invalidateCachedState();
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
super.onDestroy();
|
|
mAwesomeTabs.destroy();
|
|
}
|
|
|
|
@Override
|
|
public void onBackPressed() {
|
|
// Let mAwesomeTabs try to handle the back press, since we may be in a
|
|
// bookmarks sub-folder.
|
|
if (mAwesomeTabs.onBackPressed())
|
|
return;
|
|
|
|
// Otherwise, just exit the awesome screen
|
|
cancelAndFinish();
|
|
}
|
|
|
|
static public class ContextMenuSubject {
|
|
public int id;
|
|
public String url;
|
|
public byte[] favicon;
|
|
public String title;
|
|
public String keyword;
|
|
|
|
public ContextMenuSubject(int id, String url, byte[] favicon, String title, String keyword) {
|
|
this.id = id;
|
|
this.url = url;
|
|
this.favicon = favicon;
|
|
this.title = title;
|
|
this.keyword = keyword;
|
|
}
|
|
};
|
|
|
|
@Override
|
|
public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo menuInfo) {
|
|
super.onCreateContextMenu(menu, view, menuInfo);
|
|
ListView list = (ListView) view;
|
|
AwesomeBarTab tab = mAwesomeTabs.getAwesomeBarTabForView(view);
|
|
mContextMenuSubject = tab.getSubject(menu, view, menuInfo);
|
|
}
|
|
|
|
@Override
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
if (mContextMenuSubject == null)
|
|
return false;
|
|
|
|
final int id = mContextMenuSubject.id;
|
|
final String url = mContextMenuSubject.url;
|
|
final byte[] b = mContextMenuSubject.favicon;
|
|
final String title = mContextMenuSubject.title;
|
|
final String keyword = mContextMenuSubject.keyword;
|
|
|
|
switch (item.getItemId()) {
|
|
case R.id.open_new_tab: {
|
|
if (url == null) {
|
|
Log.e(LOGTAG, "Can't open in new tab because URL is null");
|
|
break;
|
|
}
|
|
|
|
GeckoApp.mAppContext.loadUrl(url, AwesomeBar.Target.NEW_TAB);
|
|
Toast.makeText(this, R.string.new_tab_opened, Toast.LENGTH_SHORT).show();
|
|
break;
|
|
}
|
|
case R.id.edit_bookmark: {
|
|
AlertDialog.Builder editPrompt = new AlertDialog.Builder(this);
|
|
View editView = getLayoutInflater().inflate(R.layout.bookmark_edit, null);
|
|
editPrompt.setTitle(R.string.bookmark_edit_title);
|
|
editPrompt.setView(editView);
|
|
|
|
final EditText nameText = ((EditText) editView.findViewById(R.id.edit_bookmark_name));
|
|
final EditText locationText = ((EditText) editView.findViewById(R.id.edit_bookmark_location));
|
|
final EditText keywordText = ((EditText) editView.findViewById(R.id.edit_bookmark_keyword));
|
|
nameText.setText(title);
|
|
locationText.setText(url);
|
|
keywordText.setText(keyword);
|
|
|
|
editPrompt.setPositiveButton(R.string.button_ok, new DialogInterface.OnClickListener() {
|
|
public void onClick(DialogInterface dialog, int whichButton) {
|
|
(new GeckoAsyncTask<Void, Void, Void>(GeckoApp.mAppContext, GeckoAppShell.getHandler()) {
|
|
@Override
|
|
public Void doInBackground(Void... params) {
|
|
String newUrl = locationText.getText().toString().trim();
|
|
BrowserDB.updateBookmark(mResolver, id, newUrl, nameText.getText().toString(),
|
|
keywordText.getText().toString());
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void onPostExecute(Void result) {
|
|
Toast.makeText(AwesomeBar.this, R.string.bookmark_updated, Toast.LENGTH_SHORT).show();
|
|
}
|
|
}).execute();
|
|
}
|
|
});
|
|
|
|
editPrompt.setNegativeButton(R.string.button_cancel, new DialogInterface.OnClickListener() {
|
|
public void onClick(DialogInterface dialog, int whichButton) {
|
|
// do nothing
|
|
}
|
|
});
|
|
|
|
final AlertDialog dialog = editPrompt.create();
|
|
|
|
// disable OK button if the URL is empty
|
|
locationText.addTextChangedListener(new TextWatcher() {
|
|
private boolean mEnabled = true;
|
|
|
|
public void afterTextChanged(Editable s) {}
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before, int count) {
|
|
boolean enabled = (s.toString().trim().length() > 0);
|
|
if (mEnabled != enabled) {
|
|
dialog.getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(enabled);
|
|
mEnabled = enabled;
|
|
}
|
|
}
|
|
});
|
|
|
|
dialog.show();
|
|
break;
|
|
}
|
|
case R.id.remove_bookmark: {
|
|
(new AsyncTask<Void, Void, Void>() {
|
|
private boolean mInReadingList;
|
|
|
|
@Override
|
|
public void onPreExecute() {
|
|
mInReadingList = mAwesomeTabs.isInReadingList();
|
|
}
|
|
|
|
@Override
|
|
public Void doInBackground(Void... params) {
|
|
BrowserDB.removeBookmark(mResolver, id);
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void onPostExecute(Void result) {
|
|
int messageId = R.string.bookmark_removed;
|
|
if (mInReadingList) {
|
|
messageId = R.string.reading_list_removed;
|
|
|
|
GeckoEvent e = GeckoEvent.createBroadcastEvent("Reader:Remove", url);
|
|
GeckoAppShell.sendEventToGecko(e);
|
|
}
|
|
|
|
Toast.makeText(AwesomeBar.this, messageId, Toast.LENGTH_SHORT).show();
|
|
}
|
|
}).execute();
|
|
break;
|
|
}
|
|
case R.id.remove_history: {
|
|
(new GeckoAsyncTask<Void, Void, Void>(GeckoApp.mAppContext, GeckoAppShell.getHandler()) {
|
|
@Override
|
|
public Void doInBackground(Void... params) {
|
|
BrowserDB.removeHistoryEntry(mResolver, id);
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void onPostExecute(Void result) {
|
|
Toast.makeText(AwesomeBar.this, R.string.history_removed, Toast.LENGTH_SHORT).show();
|
|
}
|
|
}).execute();
|
|
break;
|
|
}
|
|
case R.id.add_to_launcher: {
|
|
if (url == null) {
|
|
Log.e(LOGTAG, "Can't add to home screen because URL is null");
|
|
break;
|
|
}
|
|
|
|
Bitmap bitmap = null;
|
|
if (b != null)
|
|
bitmap = BitmapFactory.decodeByteArray(b, 0, b.length);
|
|
|
|
String shortcutTitle = TextUtils.isEmpty(title) ? url.replaceAll("^([a-z]+://)?(www\\.)?", "") : title;
|
|
GeckoAppShell.createShortcut(shortcutTitle, url, bitmap, "");
|
|
break;
|
|
}
|
|
case R.id.share: {
|
|
if (url == null) {
|
|
Log.e(LOGTAG, "Can't share because URL is null");
|
|
break;
|
|
}
|
|
|
|
GeckoAppShell.openUriExternal(url, "text/plain", "", "",
|
|
Intent.ACTION_SEND, title);
|
|
break;
|
|
}
|
|
default: {
|
|
return super.onContextItemSelected(item);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private static boolean hasCompositionString(Editable content) {
|
|
Object[] spans = content.getSpans(0, content.length(), Object.class);
|
|
if (spans != null) {
|
|
for (Object span : spans) {
|
|
if ((content.getSpanFlags(span) & Spanned.SPAN_COMPOSING) != 0) {
|
|
// Found composition string.
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|