bugfixes 2.3.7
fixed some problems with loading pages from other apps and the app disappearing from memory
This commit is contained in:
parent
2afff6d287
commit
a083204541
@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="acr.browser.barebones"
|
package="acr.browser.barebones"
|
||||||
android:versionCode="27"
|
android:versionCode="29"
|
||||||
android:versionName="2.3.4" >
|
android:versionName="2.3.6" >
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
android:minSdkVersion="8"
|
android:minSdkVersion="8"
|
||||||
@ -22,6 +22,10 @@
|
|||||||
android:name="acr.browser.barebones.Barebones"
|
android:name="acr.browser.barebones.Barebones"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:configChanges="orientation|screenSize|keyboardHidden"
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
||||||
|
android:alwaysRetainTaskState="true"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:allowTaskReparenting="true"
|
||||||
|
android:multiprocess="false"
|
||||||
>
|
>
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 817 B After Width: | Height: | Size: 927 B |
Binary file not shown.
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 925 B |
@ -1,12 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
<menu
|
||||||
<item android:id="@+id/refresh" android:titleCondensed="刷新頁面" android:title="刷新" android:orderInCategory="1"></item>
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:id="@+id/bookmark" android:titleCondensed="添加書簽" android:title="添加書簽" android:orderInCategory="2"></item>
|
<item android:id="@id/refresh" android:orderInCategory="1" android:title="重新載入" android:titleCondensed="重新載入頁面" />
|
||||||
<item android:id="@+id/allBookmarks" android:titleCondensed="書簽列表" android:title="書簽" android:orderInCategory="3"></item>
|
<item android:id="@id/bookmark" android:orderInCategory="2" android:title="加入到書簽" android:titleCondensed="加入書簽" />
|
||||||
<item android:id="@+id/share" android:titleCondensed="分享頁面" android:title="分享" android:orderInCategory="4"></item>
|
<item android:id="@id/allBookmarks" android:orderInCategory="3" android:title="我的書簽" android:titleCondensed="我的書簽清單" />
|
||||||
<item android:id="@+id/settings" android:titleCondensed="應用設置" android:title="設置" android:orderInCategory="6"></item>
|
<item android:id="@id/share" android:orderInCategory="4" android:title="分享頁面" android:titleCondensed="分享頁面" />
|
||||||
<item android:id="@+id/tabs" android:titleCondensed="顯示以及隱藏標簽" android:title="顯示/隱藏標簽" android:orderInCategory="5"></item>
|
<item android:id="@id/settings" android:orderInCategory="6" android:title="設定" android:titleCondensed="瀏覽器設定" />
|
||||||
<item android:id="@+id/forward" android:titleCondensed="前進頁面" android:title="前進" android:orderInCategory="7"></item>
|
<item android:id="@id/forward" android:orderInCategory="5" android:title="前往下個頁面" android:titleCondensed="前往下個頁面" />
|
||||||
|
|
||||||
|
|
||||||
</menu>
|
</menu>
|
@ -1,21 +1,19 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
|
<string name="app_name">Lightning</string>
|
||||||
<string name="app_name">Lightning</string>
|
<string name="google">Google</string>
|
||||||
<string name="google">Google</string>
|
<string name="settings">瀏覽器設定</string>
|
||||||
<string name="settings">浏覽器設置</string>
|
<string name="location">允許網頁存取您的位置資訊</string>
|
||||||
<string name="location">允許站點訪問您地理位置</string>
|
<string name="password">儲存密碼</string>
|
||||||
<string name="password">保存密碼</string>
|
<string name="agent">使用者代理</string>
|
||||||
<string name="agent">User Agent</string>
|
<string name="history">退出時清除歷史記錄(自動清理緩存)</string>
|
||||||
<string name="history">退出時清空曆史記錄(緩存將被自動清理)</string>
|
<string name="email">電郵給開發者</string>
|
||||||
<string name="email">郵件開發者</string>
|
<string name="flash">啓用 Adobe Flash(若已安裝)</string>
|
||||||
<string name="flash">啓用 Adobe Flash(若已安裝)</string>
|
<string name="mobile">以手機版檢視</string>
|
||||||
<string name="mobile">作爲移動設備訪問</string>
|
<string name="desk">以電腦桌面版檢視</string>
|
||||||
<string name="desk">作爲桌面設備訪問</string>
|
<string name="custom">自定義使用者代理</string>
|
||||||
<string name="custom">自定義 User Agent</string>
|
<string name="home">首頁</string>
|
||||||
<string name="home">首頁</string>
|
<string name="settingshelp">設定僅套用於新的標簽頁</string>
|
||||||
<string name="settingshelp">設置僅將應用于新標簽頁</string>
|
<string name="fullscreen">啓用全螢幕模式</string>
|
||||||
<string name="fullscreen">啓用全屏模式</string>
|
<string name="java">啓用 JavaScript</string>
|
||||||
<string name="java">啓用 JavaScript</string>
|
</resources>
|
||||||
|
|
||||||
</resources>
|
|
||||||
|
@ -17,12 +17,16 @@ import android.app.AlertDialog;
|
|||||||
import android.app.DownloadManager;
|
import android.app.DownloadManager;
|
||||||
import android.content.ClipData;
|
import android.content.ClipData;
|
||||||
import android.content.ClipboardManager;
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.ContentResolver;
|
||||||
|
import android.content.ContentUris;
|
||||||
|
import android.content.ContentValues;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.res.Configuration;
|
import android.content.res.Configuration;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
|
import android.database.DatabaseUtils;
|
||||||
import android.database.sqlite.SQLiteDatabase;
|
import android.database.sqlite.SQLiteDatabase;
|
||||||
import android.database.sqlite.SQLiteException;
|
import android.database.sqlite.SQLiteException;
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
@ -39,6 +43,7 @@ import android.os.Handler;
|
|||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Message;
|
import android.os.Message;
|
||||||
import android.provider.Browser;
|
import android.provider.Browser;
|
||||||
|
import android.provider.Browser.BookmarkColumns;
|
||||||
import android.text.SpannableString;
|
import android.text.SpannableString;
|
||||||
import android.text.Spanned;
|
import android.text.Spanned;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
@ -105,7 +110,8 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
static final boolean PAID_VERSION = false;
|
static final boolean PAID_VERSION = false;
|
||||||
|
|
||||||
// variable declaration
|
// variable declaration
|
||||||
static int crap;
|
|
||||||
|
static Rect edge;
|
||||||
static SimpleAdapter adapter;
|
static SimpleAdapter adapter;
|
||||||
static MultiAutoCompleteTextView getUrl;
|
static MultiAutoCompleteTextView getUrl;
|
||||||
static TextView[] urlTitle = new TextView[MAX_TABS];
|
static TextView[] urlTitle = new TextView[MAX_TABS];
|
||||||
@ -127,9 +133,12 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
static int height, width, pixels, leftPad, rightPad, pixelHeight;
|
static int height, width, pixels, leftPad, rightPad, pixelHeight;
|
||||||
static int bookHeight, API;
|
static int bookHeight, API;
|
||||||
static int mShortAnimationDuration;
|
static int mShortAnimationDuration;
|
||||||
|
static int id;
|
||||||
|
static int hitTest;
|
||||||
static int urlColumn, titleColumn;
|
static int urlColumn, titleColumn;
|
||||||
static View mCustomView = null;
|
static View mCustomView = null;
|
||||||
static CustomViewCallback mCustomViewCallback;
|
static CustomViewCallback mCustomViewCallback;
|
||||||
|
static boolean xPress;
|
||||||
static boolean tabsAreDisplayed = true, isPhone = false;
|
static boolean tabsAreDisplayed = true, isPhone = false;
|
||||||
static boolean pageIsLoading = false, java;
|
static boolean pageIsLoading = false, java;
|
||||||
static boolean allowLocation, savePasswords, deleteHistory;
|
static boolean allowLocation, savePasswords, deleteHistory;
|
||||||
@ -167,6 +176,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
static List<Map<String, String>> list;
|
static List<Map<String, String>> list;
|
||||||
static Map<String, String> map;
|
static Map<String, String> map;
|
||||||
static Handler handler;
|
static Handler handler;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
@ -349,8 +359,8 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
pixelHeight = (int) (36 * scale + 0.5f);
|
pixelHeight = (int) (36 * scale + 0.5f);
|
||||||
bookHeight = (int) (48 * scale + 0.5f);
|
bookHeight = (int) (48 * scale + 0.5f);
|
||||||
height56 = (int) (56 * scale + 0.5f);
|
height56 = (int) (56 * scale + 0.5f);
|
||||||
leftPad = (int) (10 * scale + 0.5f);
|
leftPad = (int) (15 * scale + 0.5f);
|
||||||
rightPad = (int) (10 * scale + 0.5f);
|
rightPad = (int) (15 * scale + 0.5f);
|
||||||
height32 = (int) (32 * scale + 0.5f);
|
height32 = (int) (32 * scale + 0.5f);
|
||||||
statusBar = (int) (25 * scale + 0.5f);
|
statusBar = (int) (25 * scale + 0.5f);
|
||||||
number = 0;
|
number = 0;
|
||||||
@ -361,7 +371,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
webpage.setBounds(0, 0, width * 2 / 3, height * 2 / 3);
|
webpage.setBounds(0, 0, width * 2 / 3, height * 2 / 3);
|
||||||
webpageOther.setBounds(0, 0, width * 1 / 2, height * 1 / 2);
|
webpageOther.setBounds(0, 0, width * 1 / 2, height * 1 / 2);
|
||||||
exitTab.setBounds(0, 0, width * 2 / 3, height * 2 / 3);
|
exitTab.setBounds(0, 0, width * 2 / 3, height * 2 / 3);
|
||||||
Intent url = getIntent().addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
Intent url = getIntent();
|
||||||
String URL = null; // that opens the browser
|
String URL = null; // that opens the browser
|
||||||
// gets the string passed into the browser
|
// gets the string passed into the browser
|
||||||
URL = url.getDataString();
|
URL = url.getDataString();
|
||||||
@ -496,7 +506,9 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
new String[] { "title", "url" }, new int[] { R.id.title,
|
new String[] { "title", "url" }, new int[] { R.id.title,
|
||||||
R.id.url });
|
R.id.url });
|
||||||
getUrl.setAdapter(adapter);
|
getUrl.setAdapter(adapter);
|
||||||
break;}
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
case 2:{
|
case 2:{
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -512,18 +524,21 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
|
|
||||||
|
|
||||||
bookmarks = Browser.BOOKMARKS_URI;
|
bookmarks = Browser.BOOKMARKS_URI;
|
||||||
|
|
||||||
columns = new String[] { Browser.BookmarkColumns.URL,
|
columns = new String[] { Browser.BookmarkColumns.URL,
|
||||||
Browser.BookmarkColumns.TITLE };
|
Browser.BookmarkColumns.TITLE };
|
||||||
Context con = Barebones.this;
|
|
||||||
try{
|
try{
|
||||||
|
|
||||||
managedCursor = null;
|
managedCursor = null;
|
||||||
managedCursor = con.getContentResolver().query(bookmarks, // URI of
|
managedCursor = getContentResolver().query(bookmarks, // URI of
|
||||||
columns, // Which columns to return
|
columns, // Which columns to return
|
||||||
null, // Which rows to return (all rows)
|
null, // Which rows to return (all rows)
|
||||||
null, // Selection arguments (none)
|
null, // Selection arguments (none)
|
||||||
null);
|
null);
|
||||||
Log.i("Lightning: ","SQLite success!!!");
|
Log.i("Lightning: ","SQLite success!!!");
|
||||||
handler.sendEmptyMessage(1);
|
handler.sendEmptyMessage(1);
|
||||||
|
Log.i("Lightning: ","SQLite success!!!");
|
||||||
|
|
||||||
}
|
}
|
||||||
catch(SQLiteException e){
|
catch(SQLiteException e){
|
||||||
@ -681,6 +696,74 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
Drawable[] drawables = title.getCompoundDrawables();
|
Drawable[] drawables = title.getCompoundDrawables();
|
||||||
bounds[number] = drawables[2].getBounds();
|
bounds[number] = drawables[2].getBounds();
|
||||||
title.setOnLongClickListener(Barebones.this);
|
title.setOnLongClickListener(Barebones.this);
|
||||||
|
title.setOnClickListener(new OnClickListener(){
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onClick(View arg0) {
|
||||||
|
id = arg0.getId();
|
||||||
|
if (API < 16) {
|
||||||
|
urlTitle[pageId].setBackgroundDrawable(getResources()
|
||||||
|
.getDrawable(R.drawable.bg_inactive));
|
||||||
|
} else if (API > 15) {
|
||||||
|
urlTitle[pageId].setBackground(getResources()
|
||||||
|
.getDrawable(R.drawable.bg_inactive));
|
||||||
|
}
|
||||||
|
urlTitle[pageId].setPadding(leftPad, 0, rightPad, 0);
|
||||||
|
|
||||||
|
if (isBookmarkShowing) {
|
||||||
|
|
||||||
|
background.addView(main[id]);
|
||||||
|
main[id].startAnimation(fadeIn);
|
||||||
|
scrollBookmarks.startAnimation(fadeOut);
|
||||||
|
background.removeView(scrollBookmarks);
|
||||||
|
isBookmarkShowing = false;
|
||||||
|
uBar.bringToFront();
|
||||||
|
} else if (!isBookmarkShowing) {
|
||||||
|
if (!showFullScreen) {
|
||||||
|
background.addView(main[id]);
|
||||||
|
main[id].startAnimation(fadeIn);
|
||||||
|
main[pageId].startAnimation(fadeOut);
|
||||||
|
pageIdIsVisible = false;
|
||||||
|
background.removeView(main[pageId]);
|
||||||
|
uBar.bringToFront();
|
||||||
|
} else if (API >= 12) {
|
||||||
|
pageIdIsVisible = false;
|
||||||
|
main[id].setAlpha(0f);
|
||||||
|
main[id].clearAnimation();
|
||||||
|
background.addView(main[id]);
|
||||||
|
main[id].animate().alpha(1f)
|
||||||
|
.setDuration(mShortAnimationDuration);
|
||||||
|
main[pageId].clearAnimation();
|
||||||
|
// main[pageId].animate().alpha(0f)
|
||||||
|
// .setDuration(mShortAnimationDuration);
|
||||||
|
|
||||||
|
// main[pageId].setAlpha(1f);
|
||||||
|
background.removeView(main[pageId]);
|
||||||
|
|
||||||
|
|
||||||
|
uBar.bringToFront();
|
||||||
|
} else {
|
||||||
|
pageIdIsVisible = false;
|
||||||
|
background.removeView(main[pageId]);
|
||||||
|
background.addView(main[id]);
|
||||||
|
}
|
||||||
|
uBar.bringToFront();
|
||||||
|
}
|
||||||
|
pageId = id;
|
||||||
|
pageIdIsVisible = true;
|
||||||
|
getUrl.setText(urlToLoad[pageId][0]);
|
||||||
|
|
||||||
|
if (API < 16) {
|
||||||
|
urlTitle[pageId].setBackgroundDrawable(getResources()
|
||||||
|
.getDrawable(R.drawable.bg_press));
|
||||||
|
} else if (API > 15) {
|
||||||
|
urlTitle[pageId].setBackground(getResources().getDrawable(
|
||||||
|
R.drawable.bg_press));
|
||||||
|
}
|
||||||
|
urlTitle[pageId].setPadding(leftPad, 0, rightPad, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
title.setOnTouchListener(Barebones.this);
|
title.setOnTouchListener(Barebones.this);
|
||||||
tabLayout.addView(title);
|
tabLayout.addView(title);
|
||||||
urlTitle[number] = title;
|
urlTitle[number] = title;
|
||||||
@ -897,7 +980,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
super(context);
|
super(context);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onDraw(Canvas canvas) {
|
protected void onDraw(Canvas canvas) {
|
||||||
if(!showFullScreen){
|
if(!showFullScreen){
|
||||||
@ -924,12 +1007,11 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
}
|
}
|
||||||
case MotionEvent.ACTION_UP: {
|
case MotionEvent.ACTION_UP: {
|
||||||
try{
|
try{
|
||||||
crap = getHitTestResult().getType();
|
hitTest = getHitTestResult().getType();
|
||||||
}
|
}
|
||||||
catch(NullPointerException e){
|
catch(NullPointerException e){
|
||||||
Log.e("Lightning","Touch was invalid");
|
|
||||||
}
|
}
|
||||||
if (showFullScreen&&crap!=9) {
|
if (showFullScreen&&hitTest!=9) {
|
||||||
if (System.currentTimeMillis() - timeBetweenDownPress < 500
|
if (System.currentTimeMillis() - timeBetweenDownPress < 500
|
||||||
&& !move) {
|
&& !move) {
|
||||||
if (!uBarShows) {
|
if (!uBarShows) {
|
||||||
@ -961,9 +1043,17 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private class AnthonyWebViewClient extends WebViewClient {
|
private class AnthonyWebViewClient extends WebViewClient {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doUpdateVisitedHistory(WebView view, String url,
|
||||||
|
boolean isReload) {
|
||||||
|
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean shouldOverrideUrlLoading(WebView view, String url) {
|
public boolean shouldOverrideUrlLoading(WebView view, String url) {
|
||||||
|
|
||||||
@ -1004,22 +1094,9 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPageStarted(WebView view, final String url, Bitmap favicon) {
|
public void onPageStarted(WebView view,String url, Bitmap favicon) {
|
||||||
int num = view.getId();
|
int num = view.getId();
|
||||||
Thread hist = new Thread(new Runnable() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
if(!noStockBrowser){
|
|
||||||
Browser.updateVisitedHistory(getContentResolver(), url,
|
|
||||||
true);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
hist.start();
|
|
||||||
pageIsLoading = true;
|
pageIsLoading = true;
|
||||||
refresh.startAnimation(anim);
|
refresh.startAnimation(anim);
|
||||||
getUrl.setText(url);
|
getUrl.setText(url);
|
||||||
@ -1034,8 +1111,18 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPageFinished(WebView view, String url) {
|
public void onPageFinished(WebView view, final String url) {
|
||||||
|
if(!noStockBrowser){
|
||||||
|
Thread history = new Thread( new Runnable(){
|
||||||
|
@Override
|
||||||
|
public void run(){
|
||||||
|
Browser.updateVisitedHistory(getContentResolver(),url,true);
|
||||||
|
//Log.i("Lightning",view.getTitle()+" "+url);
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
history.start();
|
||||||
|
}
|
||||||
pageIsLoading = false;
|
pageIsLoading = false;
|
||||||
anim.cancel();
|
anim.cancel();
|
||||||
anim.reset();
|
anim.reset();
|
||||||
@ -1169,7 +1256,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onReceivedTitle(WebView view, String title) {
|
public void onReceivedTitle(WebView view, String title) {
|
||||||
|
|
||||||
int num = view.getId();
|
int num = view.getId();
|
||||||
urlTitle[num].setText(title);
|
urlTitle[num].setText(title);
|
||||||
urlToLoad[num][1] = title;
|
urlToLoad[num][1] = title;
|
||||||
@ -1973,6 +2060,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
main[pageId].goBack();
|
main[pageId].goBack();
|
||||||
} else {
|
} else {
|
||||||
deleteTab(pageId);
|
deleteTab(pageId);
|
||||||
|
uBar.bringToFront();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1990,6 +2078,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
@Override
|
@Override
|
||||||
public void finish() {
|
public void finish() {
|
||||||
pageIdIsVisible = false;
|
pageIdIsVisible = false;
|
||||||
|
this.onPause();
|
||||||
super.finish();
|
super.finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1999,8 +2088,7 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
|
|
||||||
deleteHistory = settings.getBoolean("history", false);
|
deleteHistory = settings.getBoolean("history", false);
|
||||||
if (deleteHistory == true) {
|
if (deleteHistory == true) {
|
||||||
|
if(!noStockBrowser){
|
||||||
if(noStockBrowser){
|
|
||||||
Browser.clearHistory(getContentResolver());
|
Browser.clearHistory(getContentResolver());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2038,14 +2126,16 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
return dir.delete();
|
return dir.delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onTouch(View v, MotionEvent event) {
|
public boolean onTouch(View v, MotionEvent event) {
|
||||||
pageIdIsVisible = false;
|
pageIdIsVisible = false;
|
||||||
final int id = v.getId();
|
id = v.getId();
|
||||||
boolean xPress = false;
|
xPress = false;
|
||||||
x = (int) event.getX();
|
x = (int) event.getX();
|
||||||
y = (int) event.getY();
|
y = (int) event.getY();
|
||||||
final Rect edge = new Rect();
|
edge = new Rect();
|
||||||
v.getLocalVisibleRect(edge);
|
v.getLocalVisibleRect(edge);
|
||||||
|
|
||||||
if (x >= (edge.right - bounds[id].width() - fuzz)
|
if (x >= (edge.right - bounds[id].width() - fuzz)
|
||||||
@ -2144,4 +2234,37 @@ public class Barebones extends Activity implements OnLongClickListener,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPause() {
|
||||||
|
if(API>=11){
|
||||||
|
main[pageId].onPause();
|
||||||
|
}
|
||||||
|
main[pageId].pauseTimers();
|
||||||
|
super.onPause();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onResume() {
|
||||||
|
if(API>=11){
|
||||||
|
main[pageId].onResume();
|
||||||
|
}
|
||||||
|
main[pageId].resumeTimers();
|
||||||
|
super.onResume();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onNewIntent(Intent intent) {
|
||||||
|
|
||||||
|
String url = null;
|
||||||
|
url = intent.getDataString();
|
||||||
|
if(url!=null){
|
||||||
|
newTab(number,url);
|
||||||
|
}
|
||||||
|
super.onNewIntent(intent);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user