OLD | NEW |
1 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- | 1 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- |
2 * This Source Code Form is subject to the terms of the Mozilla Public | 2 * This Source Code Form is subject to the terms of the Mozilla Public |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | 5 |
6 package org.mozilla.gecko.home; | 6 package org.mozilla.gecko.home; |
7 | 7 |
8 import org.mozilla.gecko.R; | 8 import org.mozilla.gecko.R; |
9 import org.mozilla.gecko.db.BrowserContract.HomeItems; | 9 import org.mozilla.gecko.db.BrowserContract.HomeItems; |
10 import org.mozilla.gecko.home.HomePager.OnUrlOpenListener; | 10 import org.mozilla.gecko.home.HomePager.OnUrlOpenListener; |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 if (TextUtils.isEmpty(text)) { | 453 if (TextUtils.isEmpty(text)) { |
454 textView.setText(R.string.home_default_empty); | 454 textView.setText(R.string.home_default_empty); |
455 } else { | 455 } else { |
456 textView.setText(text); | 456 textView.setText(text); |
457 } | 457 } |
458 | 458 |
459 final String imageUrl = (emptyViewConfig == null) ? null : emptyView
Config.getImageUrl(); | 459 final String imageUrl = (emptyViewConfig == null) ? null : emptyView
Config.getImageUrl(); |
460 final ImageView imageView = (ImageView) view.findViewById(R.id.home_
empty_image); | 460 final ImageView imageView = (ImageView) view.findViewById(R.id.home_
empty_image); |
461 | 461 |
462 if (TextUtils.isEmpty(imageUrl)) { | 462 if (TextUtils.isEmpty(imageUrl)) { |
463 imageView.setImageResource(R.drawable.icon_home_empty_firefox); | 463 // Changed icon. See https://issues.adblockplus.org/ticket/2606 |
| 464 imageView.setImageResource(R.drawable.abb_icon_home_empty); |
464 } else { | 465 } else { |
| 466 // Changed icon. See https://issues.adblockplus.org/ticket/2606 |
465 ImageLoader.with(getContext()) | 467 ImageLoader.with(getContext()) |
466 .load(imageUrl) | 468 .load(imageUrl) |
467 .error(R.drawable.icon_home_empty_firefox) | 469 .error(R.drawable.abb_icon_home_empty) |
468 .into(imageView); | 470 .into(imageView); |
469 } | 471 } |
470 | 472 |
471 viewState.setEmptyView(view); | 473 viewState.setEmptyView(view); |
472 } | 474 } |
473 | 475 |
474 return view; | 476 return view; |
475 } | 477 } |
476 | 478 |
477 private void replacePanelView(View currentView, View newView) { | 479 private void replacePanelView(View currentView, View newView) { |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 public boolean canGoBack() { | 740 public boolean canGoBack() { |
739 return mViewState.canPopFilter(); | 741 return mViewState.canPopFilter(); |
740 } | 742 } |
741 | 743 |
742 @Override | 744 @Override |
743 public void goBack() { | 745 public void goBack() { |
744 popFilterOnView(mViewState); | 746 popFilterOnView(mViewState); |
745 } | 747 } |
746 } | 748 } |
747 } | 749 } |
OLD | NEW |