|
|
@ -106,7 +106,9 @@ import acr.browser.lightning.fragment.BookmarksFragment; |
|
|
|
import acr.browser.lightning.fragment.TabsFragment; |
|
|
|
import acr.browser.lightning.fragment.TabsFragment; |
|
|
|
import acr.browser.lightning.object.SearchAdapter; |
|
|
|
import acr.browser.lightning.object.SearchAdapter; |
|
|
|
import acr.browser.lightning.receiver.NetworkReceiver; |
|
|
|
import acr.browser.lightning.receiver.NetworkReceiver; |
|
|
|
|
|
|
|
|
|
|
|
import com.anthonycr.grant.PermissionsManager; |
|
|
|
import com.anthonycr.grant.PermissionsManager; |
|
|
|
|
|
|
|
|
|
|
|
import acr.browser.lightning.utils.ProxyUtils; |
|
|
|
import acr.browser.lightning.utils.ProxyUtils; |
|
|
|
import acr.browser.lightning.utils.ThemeUtils; |
|
|
|
import acr.browser.lightning.utils.ThemeUtils; |
|
|
|
import acr.browser.lightning.utils.UrlUtils; |
|
|
|
import acr.browser.lightning.utils.UrlUtils; |
|
|
@ -846,7 +848,6 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements |
|
|
|
// This is commodity to breack the flow between regular tab management and the CLIQZ's search
|
|
|
|
// This is commodity to breack the flow between regular tab management and the CLIQZ's search
|
|
|
|
// interface.
|
|
|
|
// interface.
|
|
|
|
private void switchTabs(final LightningView currentView, final LightningView newView) { |
|
|
|
private void switchTabs(final LightningView currentView, final LightningView newView) { |
|
|
|
final WebView currentWebView = currentView != null ? currentView.getWebView() : null; |
|
|
|
|
|
|
|
final WebView newWebView = newView != null ? newView.getWebView() : null; |
|
|
|
final WebView newWebView = newView != null ? newView.getWebView() : null; |
|
|
|
if (newView == null || newWebView == null) { |
|
|
|
if (newView == null || newWebView == null) { |
|
|
|
return; |
|
|
|
return; |
|
|
@ -866,13 +867,8 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements |
|
|
|
currentView.onPause(); |
|
|
|
currentView.onPause(); |
|
|
|
} |
|
|
|
} |
|
|
|
newView.setForegroundTab(true); |
|
|
|
newView.setForegroundTab(true); |
|
|
|
if (currentWebView != null) { |
|
|
|
|
|
|
|
updateUrl(newView.getUrl(), true); |
|
|
|
updateUrl(newView.getUrl(), true); |
|
|
|
updateProgress(newView.getProgress()); |
|
|
|
updateProgress(newView.getProgress()); |
|
|
|
} else { |
|
|
|
|
|
|
|
updateUrl("", true); |
|
|
|
|
|
|
|
updateProgress(0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
removeViewFromParent(newWebView); |
|
|
|
removeViewFromParent(newWebView); |
|
|
|
mBrowserFrame.addView(newWebView, MATCH_PARENT); |
|
|
|
mBrowserFrame.addView(newWebView, MATCH_PARENT); |
|
|
@ -1043,20 +1039,24 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements |
|
|
|
mBrowserFrame.setBackgroundColor(mBackgroundColor); |
|
|
|
mBrowserFrame.setBackgroundColor(mBackgroundColor); |
|
|
|
} |
|
|
|
} |
|
|
|
final LightningView currentTab = mTabsManager.getCurrentTab(); |
|
|
|
final LightningView currentTab = mTabsManager.getCurrentTab(); |
|
|
|
|
|
|
|
if (mTabsManager.size() == 1 && currentTab != null && |
|
|
|
|
|
|
|
(UrlUtils.isSpecialUrl(currentTab.getUrl()) || |
|
|
|
|
|
|
|
currentTab.getUrl().equals(mPreferences.getHomepage()))) { |
|
|
|
|
|
|
|
closeActivity(); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} else { |
|
|
|
mTabsManager.deleteTab(position); |
|
|
|
mTabsManager.deleteTab(position); |
|
|
|
|
|
|
|
} |
|
|
|
final LightningView afterTab = mTabsManager.getCurrentTab(); |
|
|
|
final LightningView afterTab = mTabsManager.getCurrentTab(); |
|
|
|
if (afterTab == null) { |
|
|
|
if (afterTab == null) { |
|
|
|
// if (currentTab != null && (UrlUtils.isSpecialUrl(currentTab.getUrl())
|
|
|
|
closeBrowser(); |
|
|
|
// || currentTab.getUrl().equals(mPreferenceManager.getHomepage()))) {
|
|
|
|
return; |
|
|
|
// closeActivity();
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
|
|
|
|
performExitCleanUp(); |
|
|
|
|
|
|
|
finish(); |
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
} else if (afterTab != currentTab) { |
|
|
|
} else if (afterTab != currentTab) { |
|
|
|
switchTabs(currentTab, afterTab); |
|
|
|
switchTabs(currentTab, afterTab); |
|
|
|
|
|
|
|
if (currentTab != null) { |
|
|
|
currentTab.pauseTimers(); |
|
|
|
currentTab.pauseTimers(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
mEventBus.post(new BrowserEvents.TabsChanged()); |
|
|
|
mEventBus.post(new BrowserEvents.TabsChanged()); |
|
|
|
|
|
|
|
|
|
|
|