1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.browser;
import com.android.browser.ScrollWebView.ScrollListener;
import com.android.browser.UI.DropdownChangeListener;
import android.animation.Animator;
import android.animation.Animator.AnimatorListener;
import android.animation.ObjectAnimator;
import android.app.ActionBar;
import android.app.Activity;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.util.Log;
import android.view.ActionMode;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.WebChromeClient.CustomViewCallback;
import android.webkit.WebView;
import android.widget.FrameLayout;
import java.util.List;
/**
* Ui for xlarge screen sizes
*/
public class XLargeUi extends BaseUi implements ScrollListener {
private static final String LOGTAG = "XLargeUi";
private ActionBar mActionBar;
private TabBar mTabBar;
private TitleBarXLarge mTitleBar;
private boolean mUseQuickControls;
private PieControl mPieControl;
/**
* @param browser
* @param controller
*/
public XLargeUi(Activity browser, UiController controller) {
super(browser, controller);
mTitleBar = new TitleBarXLarge(mActivity, mUiController, this);
mTitleBar.setProgress(100);
mTabBar = new TabBar(mActivity, mUiController, this);
mActionBar = mActivity.getActionBar();
setupActionBar();
setUseQuickControls(BrowserSettings.getInstance().useQuickControls());
}
private void setupActionBar() {
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
mActionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
mActionBar.setCustomView(mTabBar);
}
@Override
public void showComboView(boolean startWithHistory, Bundle extras) {
super.showComboView(startWithHistory, extras);
if (mUseQuickControls) {
mActionBar.show();
}
}
@Override
public void hideComboView() {
checkTabCount();
super.hideComboView();
// ComboView changes the action bar, set it back up to what we want
setupActionBar();
}
private void setUseQuickControls(boolean useQuickControls) {
mUseQuickControls = useQuickControls;
mTitleBar.setUseQuickControls(mUseQuickControls);
if (useQuickControls) {
checkTabCount();
mPieControl = new PieControl(mActivity, mUiController, this);
mPieControl.attachToContainer(mContentView);
Tab tab = getActiveTab();
if ((tab != null) && (tab.getWebView() != null)) {
tab.getWebView().setEmbeddedTitleBar(null);
}
setTitleGravity(Gravity.BOTTOM);
} else {
mActivity.getActionBar().show();
if (mPieControl != null) {
mPieControl.removeFromContainer(mContentView);
}
setTitleGravity(Gravity.TOP);
WebView web = mTabControl.getCurrentWebView();
if (web != null) {
web.setEmbeddedTitleBar(mTitleBar);
}
}
mTabBar.setUseQuickControls(mUseQuickControls);
}
private void checkTabCount() {
if (mUseQuickControls) {
int n = mTabBar.getTabCount();
if (n >= 2) {
mActivity.getActionBar().show();
} else if (n == 1) {
mActivity.getActionBar().hide();
}
}
}
@Override
public void onDestroy() {
hideTitleBar();
}
// webview factory
@Override
public WebView createWebView(boolean privateBrowsing) {
// Create a new WebView
ScrollWebView w = new ScrollWebView(mActivity, null,
android.R.attr.webViewStyle, privateBrowsing);
initWebViewSettings(w);
w.setScrollListener(this);
boolean supportsMultiTouch = mActivity.getPackageManager()
.hasSystemFeature(PackageManager.FEATURE_TOUCHSCREEN_MULTITOUCH);
w.getSettings().setDisplayZoomControls(!supportsMultiTouch);
w.setExpandedTileBounds(true); // smoother scrolling
return w;
}
@Override
public WebView createSubWebView(boolean privateBrowsing) {
ScrollWebView web = (ScrollWebView) createWebView(privateBrowsing);
// no scroll listener for subview
web.setScrollListener(null);
return web;
}
@Override
public void onScroll(int visibleTitleHeight, boolean userInitiated) {
mTabBar.onScroll(visibleTitleHeight, userInitiated);
}
void stopWebViewScrolling() {
ScrollWebView web = (ScrollWebView) mUiController.getCurrentWebView();
if (web != null) {
web.stopScroll();
}
}
// WebView callbacks
@Override
public void onProgressChanged(Tab tab) {
int progress = tab.getLoadProgress();
mTabBar.onProgress(tab, progress);
if (tab.inForeground()) {
mTitleBar.setProgress(progress);
if (progress == 100) {
if (!mTitleBar.isEditingUrl()) {
hideTitleBar();
if (mUseQuickControls) {
mTitleBar.setShowProgressOnly(false);
setTitleGravity(Gravity.BOTTOM);
}
}
} else {
if (!isTitleBarShowing()) {
if (mUseQuickControls && !mTitleBar.isEditingUrl()) {
mTitleBar.setShowProgressOnly(true);
setTitleGravity(Gravity.TOP);
}
showTitleBar();
}
}
}
}
@Override
public boolean needsRestoreAllTabs() {
return true;
}
@Override
public void addTab(Tab tab) {
mTabBar.onNewTab(tab);
}
protected void onAddTabCompleted(Tab tab) {
checkTabCount();
}
@Override
public void setActiveTab(final Tab tab) {
if ((tab != mActiveTab) && (mActiveTab != null)) {
// animate between the two
final ScrollWebView fromWV = (ScrollWebView) mActiveTab.getWebView();
fromWV.setDrawCached(true);
fromWV.setEmbeddedTitleBar(null);
final ScrollWebView toWV = (ScrollWebView) tab.getWebView();
if (!mUseQuickControls) {
if (mTitleBar.getParent() == null) {
toWV.setEmbeddedTitleBar(mTitleBar);
}
}
toWV.setDrawCached(true);
attachTabToContentView(tab);
super.setActiveTab(tab, false);
ObjectAnimator transition = ObjectAnimator.ofFloat(
toWV, "alpha", 0f, 1f);
transition.setDuration(mActivity.getResources()
.getInteger(R.integer.tabFadeDuration));
transition.addListener(new AnimatorListener() {
@Override
public void onAnimationCancel(Animator animation) {
fromWV.setDrawCached(false);
toWV.setDrawCached(false);
setActiveTab(tab, false);
}
@Override
public void onAnimationEnd(Animator animation) {
fromWV.setDrawCached(false);
toWV.setDrawCached(false);
setActiveTab(tab, false);
}
@Override
public void onAnimationRepeat(Animator animation) {
}
@Override
public void onAnimationStart(Animator animation) {
}
});
transition.start();
} else {
super.setActiveTab(tab, true);
setActiveTab(tab, true);
}
}
@Override
void setActiveTab(Tab tab, boolean needsAttaching) {
ScrollWebView view = (ScrollWebView) tab.getWebView();
// TabControl.setCurrentTab has been called before this,
// so the tab is guaranteed to have a webview
if (view == null) {
Log.e(LOGTAG, "active tab with no webview detected");
return;
}
// Request focus on the top window.
if (mUseQuickControls) {
mPieControl.forceToTop(mContentView);
view.setScrollListener(null);
mTabBar.showTitleBarIndicator(false);
} else {
// check if title bar is already attached by animation
if (mTitleBar.getParent() == null) {
view.setEmbeddedTitleBar(mTitleBar);
}
view.setScrollListener(this);
}
mTabBar.onSetActiveTab(tab);
if (tab.isInVoiceSearchMode()) {
showVoiceTitleBar(tab.getVoiceDisplayTitle());
} else {
revertVoiceTitleBar(tab);
}
updateLockIconToLatest(tab);
tab.getTopWindow().requestFocus();
}
@Override
public void updateTabs(List<Tab> tabs) {
mTabBar.updateTabs(tabs);
checkTabCount();
}
@Override
public void removeTab(Tab tab) {
super.removeTab(tab);
mTabBar.onRemoveTab(tab);
}
protected void onRemoveTabCompleted(Tab tab) {
checkTabCount();
}
int getContentWidth() {
if (mContentView != null) {
return mContentView.getWidth();
}
return 0;
}
@Override
public void editUrl(boolean clearInput) {
if (mUiController.isInCustomActionMode()) {
mUiController.endActionMode();
}
showTitleBar();
mTitleBar.startEditingUrl(clearInput);
}
void showTitleBarAndEdit() {
mTitleBar.setShowProgressOnly(false);
showTitleBar();
mTitleBar.startEditingUrl(false);
}
void stopEditingUrl() {
mTitleBar.stopEditingUrl();
}
@Override
protected void showTitleBar() {
if (canShowTitleBar()) {
if (mUseQuickControls) {
mContentView.addView(mTitleBar);
} else {
setTitleGravity(Gravity.TOP);
}
super.showTitleBar();
mTabBar.onShowTitleBar();
}
}
@Override
protected void hideTitleBar() {
if (isTitleBarShowing()) {
mTabBar.onHideTitleBar();
if (mUseQuickControls) {
mContentView.removeView(mTitleBar);
} else {
setTitleGravity(Gravity.NO_GRAVITY);
}
super.hideTitleBar();
}
}
public boolean isEditingUrl() {
return mTitleBar.isEditingUrl();
}
@Override
protected TitleBarBase getTitleBar() {
return mTitleBar;
}
@Override
protected void setTitleGravity(int gravity) {
if (mUseQuickControls) {
FrameLayout.LayoutParams lp =
(FrameLayout.LayoutParams) mTitleBar.getLayoutParams();
lp.gravity = gravity;
mTitleBar.setLayoutParams(lp);
} else {
super.setTitleGravity(gravity);
}
}
// action mode callbacks
@Override
public void onActionModeStarted(ActionMode mode) {
if (!mTitleBar.isEditingUrl()) {
// hide the fake title bar when CAB is shown
hideTitleBar();
}
}
@Override
public void onActionModeFinished(boolean inLoad) {
checkTabCount();
if (inLoad) {
// the titlebar was removed when the CAB was shown
// if the page is loading, show it again
mTitleBar.setShowProgressOnly(true);
if (!isTitleBarShowing()) {
setTitleGravity(Gravity.TOP);
}
showTitleBar();
}
}
@Override
protected void updateNavigationState(Tab tab) {
mTitleBar.updateNavigationState(tab);
}
@Override
public void setUrlTitle(Tab tab) {
super.setUrlTitle(tab);
mTabBar.onUrlAndTitle(tab, tab.getUrl(), tab.getTitle());
}
// Set the favicon in the title bar.
@Override
public void setFavicon(Tab tab) {
super.setFavicon(tab);
mTabBar.onFavicon(tab, tab.getFavicon());
}
@Override
public void showVoiceTitleBar(String title) {
List<String> vsresults = null;
if (getActiveTab() != null) {
vsresults = getActiveTab().getVoiceSearchResults();
}
mTitleBar.setInVoiceMode(true, vsresults);
mTitleBar.setDisplayTitle(title);
}
@Override
public void revertVoiceTitleBar(Tab tab) {
mTitleBar.setInVoiceMode(false, null);
String url = tab.getUrl();
mTitleBar.setDisplayTitle(url);
}
@Override
public void showCustomView(View view, CustomViewCallback callback) {
super.showCustomView(view, callback);
mActivity.getActionBar().hide();
}
@Override
public void onHideCustomView() {
super.onHideCustomView();
if (mUseQuickControls) {
checkTabCount();
} else {
mActivity.getActionBar().show();
}
}
@Override
public boolean dispatchKey(int code, KeyEvent event) {
WebView web = getActiveTab().getWebView();
if (event.getAction() == KeyEvent.ACTION_DOWN) {
switch (code) {
case KeyEvent.KEYCODE_TAB:
case KeyEvent.KEYCODE_DPAD_UP:
case KeyEvent.KEYCODE_DPAD_LEFT:
if ((web != null) && web.hasFocus() && !mTitleBar.hasFocus()) {
editUrl(false);
return true;
}
}
boolean ctrl = event.hasModifiers(KeyEvent.META_CTRL_ON);
if (!ctrl && isTypingKey(event) && !mTitleBar.isEditingUrl()) {
editUrl(true);
return mContentView.dispatchKeyEvent(event);
}
}
return false;
}
private boolean isTypingKey(KeyEvent evt) {
return evt.getUnicodeChar() > 0;
}
TabBar getTabBar() {
return mTabBar;
}
@Override
public void registerDropdownChangeListener(DropdownChangeListener d) {
mTitleBar.registerDropdownChangeListener(d);
}
}
|