Browse Source

add ability to add shortcuts to the homescreen, more work still needed

master
Anthony Restaino 8 years ago
parent
commit
416dc4594d
  1. 1
      app/src/main/AndroidManifest.xml
  2. 7
      app/src/main/java/acr/browser/lightning/activity/BrowserActivity.java
  3. 21
      app/src/main/java/acr/browser/lightning/utils/Utils.java
  4. 5
      app/src/main/res/menu-large/main.xml
  5. 5
      app/src/main/res/menu-xlarge/main.xml
  6. 5
      app/src/main/res/menu/main.xml
  7. 20
      app/src/main/res/values/strings.xml

1
app/src/main/AndroidManifest.xml

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
<uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
<uses-feature
android:name="android.hardware.location.gps"

7
app/src/main/java/acr/browser/lightning/activity/BrowserActivity.java

@ -676,6 +676,13 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements @@ -676,6 +676,13 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
currentView.goForward();
}
return true;
case R.id.action_add_to_homescreen:
if (currentView != null) {
HistoryItem shortcut = new HistoryItem(currentView.getUrl(), currentView.getTitle());
shortcut.setBitmap(currentView.getFavicon());
Utils.createShortcut(this, shortcut);
}
return true;
case R.id.action_new_tab:
newTab(null, true);
return true;

21
app/src/main/java/acr/browser/lightning/utils/Utils.java

@ -20,12 +20,14 @@ import android.graphics.LinearGradient; @@ -20,12 +20,14 @@ import android.graphics.LinearGradient;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Shader;
import android.net.Uri;
import android.os.Environment;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.StringRes;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AlertDialog;
import android.text.TextUtils;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.View;
@ -43,7 +45,9 @@ import java.text.SimpleDateFormat; @@ -43,7 +45,9 @@ import java.text.SimpleDateFormat;
import java.util.Date;
import acr.browser.lightning.R;
import acr.browser.lightning.activity.MainActivity;
import acr.browser.lightning.constant.Constants;
import acr.browser.lightning.database.HistoryItem;
import acr.browser.lightning.download.DownloadHandler;
import acr.browser.lightning.preference.PreferenceManager;
@ -377,4 +381,21 @@ public final class Utils { @@ -377,4 +381,21 @@ public final class Utils {
canvas.drawPath(wallpath, paint);
}
public static void createShortcut(@NonNull Activity activity, HistoryItem item) {
Log.d(Constants.TAG, "Creating shortcut: " + item.getTitle() + ' ' + item.getUrl());
Intent shortcutIntent = new Intent(activity, MainActivity.class);
shortcutIntent.setData(Uri.parse(item.getUrl()));
final String title = TextUtils.isEmpty(item.getTitle()) ? activity.getString(R.string.untitled) : item.getTitle();
Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, title);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON, item.getBitmap());
addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
activity.sendBroadcast(addIntent);
Utils.showSnackbar(activity, R.string.message_added_to_homescreen);
}
}

5
app/src/main/res/menu-large/main.xml

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" >
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_back"
@ -53,6 +53,9 @@ @@ -53,6 +53,9 @@
<item
android:id="@+id/action_copy"
android:title="@string/action_copy"/>
<item
android:id="@+id/action_add_to_homescreen"
android:title="@string/action_add_to_homescreen"/>
<item
android:id="@+id/action_bookmarks"
android:title="@string/action_bookmarks"/>

5
app/src/main/res/menu-xlarge/main.xml

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" >
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_back"
@ -53,6 +53,9 @@ @@ -53,6 +53,9 @@
<item
android:id="@+id/action_copy"
android:title="@string/action_copy"/>
<item
android:id="@+id/action_add_to_homescreen"
android:title="@string/action_add_to_homescreen"/>
<item
android:id="@+id/action_bookmarks"
android:title="@string/action_bookmarks"/>

5
app/src/main/res/menu/main.xml

@ -15,7 +15,7 @@ @@ -15,7 +15,7 @@
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_new_tab"
@ -35,6 +35,9 @@ @@ -35,6 +35,9 @@
<item
android:id="@+id/action_copy"
android:title="@string/action_copy"/>
<item
android:id="@+id/action_add_to_homescreen"
android:title="@string/action_add_to_homescreen"/>
<item
android:id="@+id/action_bookmarks"
android:title="@string/action_bookmarks"/>

20
app/src/main/res/values/strings.xml

@ -104,10 +104,10 @@ @@ -104,10 +104,10 @@
<string name="cannot_download">Can only download \"http\" or \"https\" URLs.</string>
<string name="problem_download">Invalid URL encountered, cannot download</string>
<string name="problem_location_download">Cannot download to the specified location</string>
<string name="download_no_sdcard_dlg_title" >No SD card</string>
<string name="download_no_sdcard_dlg_msg" >USB storage is required to download the file.</string>
<string name="download_no_sdcard_dlg_title">No SD card</string>
<string name="download_no_sdcard_dlg_msg">USB storage is required to download the file.</string>
<string name="download_sdcard_busy_dlg_title">USB storage unavailable</string>
<string name="download_sdcard_busy_dlg_msg" >The storage is busy. To allow downloads, touch Turn Off USB Storage in the notification.</string>
<string name="download_sdcard_busy_dlg_msg">The storage is busy. To allow downloads, touch Turn Off USB Storage in the notification.</string>
<string name="incognito_cookies">Enable Cookies in Incognito Mode</string>
<string name="title_flash">Adobe Flash</string>
<string name="action_manual">Manual</string>
@ -204,13 +204,13 @@ @@ -204,13 +204,13 @@
<string name="url_contents">URL Box Contents</string>
<string name="text_encoding">Text Encoding</string>
<string-array name="url_content_array">
<item >Domain (default)</item>
<item >URL</item>
<item >Title</item>
<item>Domain (default)</item>
<item>URL</item>
<item>Title</item>
</string-array>
<string name="invert_color">Invert color</string>
<string name="dark_theme">Dark Theme</string>
<string name="tabs">Tabs</string>
<string name="invert_color">Invert color</string>
<string name="dark_theme">Dark Theme</string>
<string name="tabs">Tabs</string>
<string name="theme">App Theme</string>
<string name="light_theme">Light Theme</string>
<string name="black_theme">Black Theme (AMOLED)</string>
@ -227,4 +227,6 @@ @@ -227,4 +227,6 @@
<string name="tabs_in_drawer">Show tabs in Navigation Drawer</string>
<string name="do_not_track">Request \'Do Not Track\'</string>
<string name="remove_identifying_headers">Remove Identifying Headers</string>
<string name="action_add_to_homescreen">Add to Homescreen</string>
<string name="message_added_to_homescreen">Shortcut Added to Homescreen</string>
</resources>

Loading…
Cancel
Save