Browse Source

Spring Cleaning

master
Anthony Restaino 10 years ago
parent
commit
bd8d2ee0b8
  1. 2
      res/layout/activity_main.xml
  2. 4
      res/layout/bookmark_drawer.xml
  3. 3
      res/layout/tab_drawer.xml
  4. 160
      src/acr/browser/lightning/BrowserActivity.java

2
res/layout/activity_main.xml

@ -4,7 +4,7 @@
android:id="@+id/main_layout" android:id="@+id/main_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="?attr/colorPrimary" android:background="@null"
android:orientation="vertical" > android:orientation="vertical" >
<android.support.v4.widget.DrawerLayout <android.support.v4.widget.DrawerLayout

4
res/layout/bookmark_drawer.xml

@ -53,8 +53,8 @@
android:id="@+id/right_drawer_list" android:id="@+id/right_drawer_list"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:divider="#bababa" android:divider="@null"
android:dividerHeight="1dp" android:dividerHeight="0dp"
android:listSelector="?attr/listBackground" /> android:listSelector="?attr/listBackground" />
</LinearLayout> </LinearLayout>

3
res/layout/tab_drawer.xml

@ -55,7 +55,8 @@
android:layout_height="0dp" android:layout_height="0dp"
android:layout_weight="1" android:layout_weight="1"
android:choiceMode="singleChoice" android:choiceMode="singleChoice"
android:dividerHeight="1dp" android:divider="@null"
android:dividerHeight="0dp"
android:listSelector="?attr/listBackground" /> android:listSelector="?attr/listBackground" />
<View <View

160
src/acr/browser/lightning/BrowserActivity.java

@ -73,48 +73,64 @@ import java.util.*;
public class BrowserActivity extends ThemableActivity implements BrowserController, OnClickListener { public class BrowserActivity extends ThemableActivity implements BrowserController, OnClickListener {
// Layout
private DrawerLayout mDrawerLayout; private DrawerLayout mDrawerLayout;
private FrameLayout mBrowserFrame;
private FullscreenHolder mFullscreenContainer;
private ListView mDrawerListLeft, mDrawerListRight; private ListView mDrawerListLeft, mDrawerListRight;
private LinearLayout mDrawerLeft, mDrawerRight, mUiLayout, mToolbarLayout; private LinearLayout mDrawerLeft, mDrawerRight, mUiLayout, mToolbarLayout;
private RelativeLayout mNewTab, mSearchBar; private RelativeLayout mNewTab, mSearchBar;
private List<LightningView> mWebViews = new ArrayList<LightningView>();
// List
private final List<LightningView> mWebViews = new ArrayList<LightningView>();
private List<HistoryItem> mBookmarkList;
private LightningView mCurrentView; private LightningView mCurrentView;
private int mIdGenerator;
// View
private ActionBar mActionBar;
private AnimatedProgressBar mProgressBar;
private AutoCompleteTextView mSearch;
private ImageView mArrowImage;
private Toolbar mToolbar; private Toolbar mToolbar;
private LightningViewAdapter mTitleAdapter; private VideoView mVideoView;
private List<HistoryItem> mBookmarkList; private View mCustomView, mVideoProgressView;
// Adapter
private BookmarkViewAdapter mBookmarkAdapter; private BookmarkViewAdapter mBookmarkAdapter;
private DrawerArrowDrawable mArrowDrawable; private LightningViewAdapter mTitleAdapter;
private ImageView mArrowImage; private SearchAdapter mSearchAdapter;
private AutoCompleteTextView mSearch;
// Callback
private ClickHandler mClickHandler; private ClickHandler mClickHandler;
private AnimatedProgressBar mProgressBar;
private boolean mSystemBrowser = false;
private ValueCallback<Uri> mUploadMessage;
private View mCustomView, mVideoProgressView;
private int mOriginalOrientation, mBackgroundColor;
private ActionBar mActionBar;
private boolean mFullScreen, mColorMode, mDarkTheme;
private FrameLayout mBrowserFrame;
private FullscreenHolder mFullscreenContainer;
private CustomViewCallback mCustomViewCallback; private CustomViewCallback mCustomViewCallback;
private final FrameLayout.LayoutParams COVER_SCREEN_PARAMS = new FrameLayout.LayoutParams( private ValueCallback<Uri> mUploadMessage;
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
private Bitmap mDefaultVideoPoster, mWebpageBitmap; // Context
private Activity mActivity;
// Native
private boolean mSystemBrowser = false, mIsNewIntent = false, mFullScreen, mColorMode,
mDarkTheme;
private int mOriginalOrientation, mBackgroundColor, mIdGenerator;
private String mSearchText, mUntitledTitle, mHomepage;
// Storage
private HistoryDatabase mHistoryDatabase; private HistoryDatabase mHistoryDatabase;
private BookmarkManager mBookmarkManager;
private SharedPreferences mPreferences; private SharedPreferences mPreferences;
private Context mContext;
private String mSearchText, mUntitledTitle, mHomepage; // Image
private Activity mActivity; private Bitmap mDefaultVideoPoster, mWebpageBitmap;
private final int API = android.os.Build.VERSION.SDK_INT; private final ColorDrawable mBackground = new ColorDrawable();
private Drawable mDeleteIcon, mRefreshIcon, mCopyIcon, mIcon; private Drawable mDeleteIcon, mRefreshIcon, mCopyIcon, mIcon;
private boolean mIsNewIntent = false; private DrawerArrowDrawable mArrowDrawable;
private VideoView mVideoView;
private static SearchAdapter mSearchAdapter; // Constant
private static LayoutParams mMatchParent = new LayoutParams(LayoutParams.MATCH_PARENT, private static final int API = android.os.Build.VERSION.SDK_INT;
private static final LayoutParams MATCH_PARENT = new LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT); LayoutParams.MATCH_PARENT);
private BookmarkManager mBookmarkManager; private static final FrameLayout.LayoutParams COVER_SCREEN_PARAMS = new FrameLayout.LayoutParams(
private ColorDrawable mBackground = new ColorDrawable(); LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
@ -132,12 +148,8 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
mPreferences = getSharedPreferences(PreferenceConstants.PREFERENCES, 0); mPreferences = getSharedPreferences(PreferenceConstants.PREFERENCES, 0);
mDarkTheme = mPreferences.getBoolean(PreferenceConstants.DARK_THEME, false) mDarkTheme = mPreferences.getBoolean(PreferenceConstants.DARK_THEME, false)
|| isIncognito(); || isIncognito();
mContext = this; mActivity = this;
if (mWebViews != null) { mWebViews.clear();
mWebViews.clear();
} else {
mWebViews = new ArrayList<LightningView>();
}
mActivity = this; mActivity = this;
mClickHandler = new ClickHandler(this); mClickHandler = new ClickHandler(this);
@ -145,12 +157,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
mToolbarLayout = (LinearLayout) findViewById(R.id.toolbar_layout); mToolbarLayout = (LinearLayout) findViewById(R.id.toolbar_layout);
// initialize background ColorDrawable // initialize background ColorDrawable
mBackground.setColor(((ColorDrawable) mToolbarLayout.getBackground()).getColor()); mBackground.setColor(((ColorDrawable) mToolbarLayout.getBackground()).getColor());
LinearLayout background = (LinearLayout) findViewById(R.id.main_layout);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
background.setBackground(null);
} else {
background.setBackgroundDrawable(null);
}
mUiLayout = (LinearLayout) findViewById(R.id.ui_layout); mUiLayout = (LinearLayout) findViewById(R.id.ui_layout);
mProgressBar = (AnimatedProgressBar) findViewById(R.id.progress_view); mProgressBar = (AnimatedProgressBar) findViewById(R.id.progress_view);
mNewTab = (RelativeLayout) findViewById(R.id.new_tab_button); mNewTab = (RelativeLayout) findViewById(R.id.new_tab_button);
@ -160,13 +167,9 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
// otherwise // otherwise
mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
mDrawerListLeft = (ListView) findViewById(R.id.left_drawer_list); mDrawerListLeft = (ListView) findViewById(R.id.left_drawer_list);
mDrawerListLeft.setDivider(null);
mDrawerListLeft.setDividerHeight(0);
mDrawerRight = (LinearLayout) findViewById(R.id.right_drawer); mDrawerRight = (LinearLayout) findViewById(R.id.right_drawer);
mDrawerRight.setLayerType(View.LAYER_TYPE_HARDWARE, null); mDrawerRight.setLayerType(View.LAYER_TYPE_HARDWARE, null);
mDrawerListRight = (ListView) findViewById(R.id.right_drawer_list); mDrawerListRight = (ListView) findViewById(R.id.right_drawer_list);
mDrawerListRight.setDivider(null);
mDrawerListRight.setDividerHeight(0);
setNavigationDrawerWidth(); setNavigationDrawerWidth();
mDrawerLayout.setDrawerListener(new DrawerLocker()); mDrawerLayout.setDrawerListener(new DrawerLocker());
@ -223,22 +226,23 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
// create the search EditText in the ToolBar // create the search EditText in the ToolBar
mSearch = (AutoCompleteTextView) mActionBar.getCustomView().findViewById(R.id.search); mSearch = (AutoCompleteTextView) mActionBar.getCustomView().findViewById(R.id.search);
mUntitledTitle = (String) this.getString(R.string.untitled); mUntitledTitle = (String) getString(R.string.untitled);
mBackgroundColor = getResources().getColor(R.color.primary_color); mBackgroundColor = getResources().getColor(R.color.primary_color);
Theme theme = getTheme();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
mDeleteIcon = getResources().getDrawable(R.drawable.ic_action_delete); mDeleteIcon = getResources().getDrawable(R.drawable.ic_action_delete);
mRefreshIcon = getResources().getDrawable(R.drawable.ic_action_refresh); mRefreshIcon = getResources().getDrawable(R.drawable.ic_action_refresh);
mCopyIcon = getResources().getDrawable(R.drawable.ic_action_copy); mCopyIcon = getResources().getDrawable(R.drawable.ic_action_copy);
} else { } else {
Theme theme = getTheme();
mDeleteIcon = getResources().getDrawable(R.drawable.ic_action_delete, theme); mDeleteIcon = getResources().getDrawable(R.drawable.ic_action_delete, theme);
mRefreshIcon = getResources().getDrawable(R.drawable.ic_action_refresh, theme); mRefreshIcon = getResources().getDrawable(R.drawable.ic_action_refresh, theme);
mCopyIcon = getResources().getDrawable(R.drawable.ic_action_copy, theme); mCopyIcon = getResources().getDrawable(R.drawable.ic_action_copy, theme);
} }
mDeleteIcon.setBounds(0, 0, Utils.convertDpToPixels(24), Utils.convertDpToPixels(24)); int iconBounds = Utils.convertDpToPixels(24);
mRefreshIcon.setBounds(0, 0, Utils.convertDpToPixels(24), Utils.convertDpToPixels(24)); mDeleteIcon.setBounds(0, 0, iconBounds, iconBounds);
mCopyIcon.setBounds(0, 0, Utils.convertDpToPixels(24), Utils.convertDpToPixels(24)); mRefreshIcon.setBounds(0, 0, iconBounds, iconBounds);
mCopyIcon.setBounds(0, 0, iconBounds, iconBounds);
mIcon = mRefreshIcon; mIcon = mRefreshIcon;
SearchClass search = new SearchClass(); SearchClass search = new SearchClass();
mSearch.setCompoundDrawables(null, null, mRefreshIcon, null); mSearch.setCompoundDrawables(null, null, mRefreshIcon, null);
@ -271,7 +275,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
String url = mPreferences.getString(PreferenceConstants.SAVE_URL, null); String url = mPreferences.getString(PreferenceConstants.SAVE_URL, null);
if (url != null) { if (url != null) {
newTab(url, true); newTab(url, true);
Toast.makeText(mContext, R.string.deleted_tab, Toast.LENGTH_SHORT).show(); Toast.makeText(mActivity, R.string.deleted_tab, Toast.LENGTH_SHORT).show();
} }
mPreferences.edit().putString(PreferenceConstants.SAVE_URL, null).apply(); mPreferences.edit().putString(PreferenceConstants.SAVE_URL, null).apply();
return true; return true;
@ -432,8 +436,8 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
.toString()); .toString());
clipboard.setPrimaryClip(clip); clipboard.setPrimaryClip(clip);
Utils.showToast( Utils.showToast(
mContext, mActivity,
mContext.getResources().getString( mActivity.getResources().getString(
R.string.message_text_copied)); R.string.message_text_copied));
} else { } else {
refreshOrStop(); refreshOrStop();
@ -514,7 +518,6 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
return true; return true;
} else if (oh.isOrbotInstalled() & useProxy) { } else if (oh.isOrbotInstalled() & useProxy) {
initializeTor();
return true; return true;
} else { } else {
mPreferences.edit().putBoolean(PreferenceConstants.USE_PROXY, false).apply(); mPreferences.edit().putBoolean(PreferenceConstants.USE_PROXY, false).apply();
@ -699,7 +702,8 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
initializeTor(); initializeTor();
} else { } else {
try { try {
WebkitProxy.resetProxy("acr.browser.lightning.BrowserApp", getApplicationContext()); WebkitProxy.resetProxy(mActivity.getPackageName() + ".BrowserApp",
getApplicationContext());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -779,8 +783,8 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
ClipData clip = ClipData.newPlainText("label", mCurrentView.getUrl()); ClipData clip = ClipData.newPlainText("label", mCurrentView.getUrl());
clipboard.setPrimaryClip(clip); clipboard.setPrimaryClip(clip);
Utils.showToast(mContext, Utils.showToast(mActivity,
mContext.getResources().getString(R.string.message_link_copied)); mActivity.getResources().getString(R.string.message_link_copied));
} }
} }
return true; return true;
@ -869,11 +873,11 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
} }
private void showCloseDialog(final int position) { private void showCloseDialog(final int position) {
AlertDialog.Builder builder = new AlertDialog.Builder(mContext); AlertDialog.Builder builder = new AlertDialog.Builder(mActivity);
ArrayAdapter<String> adapter = new ArrayAdapter<>(mContext, ArrayAdapter<String> adapter = new ArrayAdapter<>(mActivity,
android.R.layout.simple_dropdown_item_1line); android.R.layout.simple_dropdown_item_1line);
adapter.add(mContext.getString(R.string.close_tab)); adapter.add(mActivity.getString(R.string.close_tab));
adapter.add(mContext.getString(R.string.close_all_tabs)); adapter.add(mActivity.getString(R.string.close_all_tabs));
builder.setAdapter(adapter, new DialogInterface.OnClickListener() { builder.setAdapter(adapter, new DialogInterface.OnClickListener() {
@Override @Override
@ -942,7 +946,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
public boolean onItemLongClick(AdapterView<?> arg0, View arg1, final int position, long arg3) { public boolean onItemLongClick(AdapterView<?> arg0, View arg1, final int position, long arg3) {
AlertDialog.Builder builder = new AlertDialog.Builder(mActivity); AlertDialog.Builder builder = new AlertDialog.Builder(mActivity);
builder.setTitle(mContext.getResources().getString(R.string.action_bookmarks)); builder.setTitle(mActivity.getResources().getString(R.string.action_bookmarks));
builder.setMessage(getResources().getString(R.string.dialog_bookmark)) builder.setMessage(getResources().getString(R.string.dialog_bookmark))
.setCancelable(true) .setCancelable(true)
.setPositiveButton(getResources().getString(R.string.action_new_tab), .setPositiveButton(getResources().getString(R.string.action_new_tab),
@ -991,15 +995,15 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
public synchronized void editBookmark(final int id) { public synchronized void editBookmark(final int id) {
final AlertDialog.Builder homePicker = new AlertDialog.Builder(mActivity); final AlertDialog.Builder homePicker = new AlertDialog.Builder(mActivity);
homePicker.setTitle(getResources().getString(R.string.title_edit_bookmark)); homePicker.setTitle(getResources().getString(R.string.title_edit_bookmark));
final EditText getTitle = new EditText(mContext); final EditText getTitle = new EditText(mActivity);
getTitle.setHint(getResources().getString(R.string.hint_title)); getTitle.setHint(getResources().getString(R.string.hint_title));
getTitle.setText(mBookmarkList.get(id).getTitle()); getTitle.setText(mBookmarkList.get(id).getTitle());
getTitle.setSingleLine(); getTitle.setSingleLine();
final EditText getUrl = new EditText(mContext); final EditText getUrl = new EditText(mActivity);
getUrl.setHint(getResources().getString(R.string.hint_url)); getUrl.setHint(getResources().getString(R.string.hint_url));
getUrl.setText(mBookmarkList.get(id).getUrl()); getUrl.setText(mBookmarkList.get(id).getUrl());
getUrl.setSingleLine(); getUrl.setSingleLine();
LinearLayout layout = new LinearLayout(mContext); LinearLayout layout = new LinearLayout(mActivity);
layout.setOrientation(LinearLayout.VERTICAL); layout.setOrientation(LinearLayout.VERTICAL);
layout.addView(getTitle); layout.addView(getTitle);
layout.addView(getUrl); layout.addView(getUrl);
@ -1053,7 +1057,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
updateProgress(0); updateProgress(0);
} }
mBrowserFrame.addView(mCurrentView.getWebView(), mMatchParent); mBrowserFrame.addView(mCurrentView.getWebView(), MATCH_PARENT);
// Remove browser frame background to reduce overdraw // Remove browser frame background to reduce overdraw
mBrowserFrame.setBackgroundColor(0); mBrowserFrame.setBackgroundColor(0);
mCurrentView.requestFocus(); mCurrentView.requestFocus();
@ -1524,15 +1528,15 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
@Override @Override
public void onGenerated(Palette palette) { public void onGenerated(Palette palette) {
// OR with opaque black to remove transparency glitches // OR with opaque black to remove transparency glitches
int color = 0xff000000 | palette.getVibrantColor(mContext.getResources() int color = 0xff000000 | palette.getVibrantColor(mActivity.getResources()
.getColor(R.color.primary_color)); .getColor(R.color.primary_color));
int finalColor; // Lighten up the dark color if it is int finalColor; // Lighten up the dark color if it is
// too dark // too dark
if (isColorTooDark(color)) { if (isColorTooDark(color)) {
finalColor = mixTwoColors( finalColor = mixTwoColors(
mContext.getResources().getColor(R.color.primary_color), color, mActivity.getResources().getColor(R.color.primary_color),
0.25f); color, 0.25f);
} else { } else {
finalColor = color; finalColor = color;
} }
@ -1653,7 +1657,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
Bitmap mIcon = null; Bitmap mIcon = null;
// unique path for each url that is bookmarked. // unique path for each url that is bookmarked.
String hash = String.valueOf(Utils.getDomainName(url).hashCode()); String hash = String.valueOf(Utils.getDomainName(url).hashCode());
File image = new File(mContext.getCacheDir(), hash + ".png"); File image = new File(mActivity.getCacheDir(), hash + ".png");
String urldisplay; String urldisplay;
try { try {
urldisplay = Utils.getProtocol(url) + getDomainName(url) + "/favicon.ico"; urldisplay = Utils.getProtocol(url) + getDomainName(url) + "/favicon.ico";
@ -1799,7 +1803,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
} }
try { try {
if (mHistoryDatabase == null) { if (mHistoryDatabase == null) {
mHistoryDatabase = HistoryDatabase.getInstance(mContext); mHistoryDatabase = HistoryDatabase.getInstance(mActivity);
} }
mHistoryDatabase.visitHistoryItem(url, title); mHistoryDatabase.visitHistoryItem(url, title);
} catch (IllegalStateException e) { } catch (IllegalStateException e) {
@ -1865,7 +1869,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
try { try {
String url; String url;
url = ((TextView) arg1.findViewById(R.id.url)).getText().toString(); url = ((TextView) arg1.findViewById(R.id.url)).getText().toString();
if (url.startsWith(mContext.getString(R.string.suggestion))) { if (url.startsWith(mActivity.getString(R.string.suggestion))) {
url = ((TextView) arg1.findViewById(R.id.title)).getText().toString(); url = ((TextView) arg1.findViewById(R.id.title)).getText().toString();
} else { } else {
getUrl.setText(url); getUrl.setText(url);
@ -1885,7 +1889,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
}); });
getUrl.setSelectAllOnFocus(true); getUrl.setSelectAllOnFocus(true);
mSearchAdapter = new SearchAdapter(mContext, mDarkTheme, isIncognito()); mSearchAdapter = new SearchAdapter(mActivity, mDarkTheme, isIncognito());
getUrl.setAdapter(mSearchAdapter); getUrl.setAdapter(mSearchAdapter);
} }
@ -1903,7 +1907,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
@Override @Override
public void run() { public void run() {
mCurrentView.loadUrl(HistoryPage.getHistoryPage(mContext)); mCurrentView.loadUrl(HistoryPage.getHistoryPage(mActivity));
mSearch.setText(""); mSearch.setText("");
} }
@ -1939,7 +1943,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
+ helper.getUrl() + BookmarkPage.PART3 + helper.getTitle() + BookmarkPage.PART4); + helper.getUrl() + BookmarkPage.PART3 + helper.getTitle() + BookmarkPage.PART4);
} }
bookmarkHtml += BookmarkPage.END; bookmarkHtml += BookmarkPage.END;
File bookmarkWebPage = new File(mContext.getFilesDir(), BookmarkPage.FILENAME); File bookmarkWebPage = new File(mActivity.getFilesDir(), BookmarkPage.FILENAME);
try { try {
FileWriter bookWriter = new FileWriter(bookmarkWebPage, false); FileWriter bookWriter = new FileWriter(bookmarkWebPage, false);
bookWriter.write(bookmarkHtml); bookWriter.write(bookmarkHtml);
@ -1994,7 +1998,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
*/ */
public void onLongPress() { public void onLongPress() {
if (mClickHandler == null) { if (mClickHandler == null) {
mClickHandler = new ClickHandler(mContext); mClickHandler = new ClickHandler(mActivity);
} }
Message click = mClickHandler.obtainMessage(); Message click = mClickHandler.obtainMessage();
if (click != null) { if (click != null) {
@ -2190,7 +2194,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
} }
if (mToolbarLayout.getVisibility() != View.GONE) { if (mToolbarLayout.getVisibility() != View.GONE) {
Animation hide = AnimationUtils.loadAnimation(mContext, R.anim.slide_up); Animation hide = AnimationUtils.loadAnimation(mActivity, R.anim.slide_up);
hide.setAnimationListener(new AnimationListener() { hide.setAnimationListener(new AnimationListener() {
@Override @Override
@ -2237,7 +2241,7 @@ public class BrowserActivity extends ThemableActivity implements BrowserControll
Log.d(Constants.TAG, "Move view to browser frame"); Log.d(Constants.TAG, "Move view to browser frame");
} }
if (mToolbarLayout.getVisibility() != View.VISIBLE) { if (mToolbarLayout.getVisibility() != View.VISIBLE) {
Animation show = AnimationUtils.loadAnimation(mContext, R.anim.slide_down); Animation show = AnimationUtils.loadAnimation(mActivity, R.anim.slide_down);
show.setAnimationListener(new AnimationListener() { show.setAnimationListener(new AnimationListener() {
@Override @Override

Loading…
Cancel
Save