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 imageView.setImageResource(R.drawable.abb_icon_home_empty); |
464 } else { | 464 } else { |
465 ImageLoader.with(getContext()) | 465 ImageLoader.with(getContext()) |
466 .load(imageUrl) | 466 .load(imageUrl) |
467 .error(R.drawable.icon_home_empty_firefox) | 467 .error(R.drawable.abb_icon_home_empty) |
468 .into(imageView); | 468 .into(imageView); |
469 } | 469 } |
470 | 470 |
471 viewState.setEmptyView(view); | 471 viewState.setEmptyView(view); |
472 } | 472 } |
473 | 473 |
474 return view; | 474 return view; |
475 } | 475 } |
476 | 476 |
477 private void replacePanelView(View currentView, View newView) { | 477 private void replacePanelView(View currentView, View newView) { |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 public boolean canGoBack() { | 738 public boolean canGoBack() { |
739 return mViewState.canPopFilter(); | 739 return mViewState.canPopFilter(); |
740 } | 740 } |
741 | 741 |
742 @Override | 742 @Override |
743 public void goBack() { | 743 public void goBack() { |
744 popFilterOnView(mViewState); | 744 popFilterOnView(mViewState); |
745 } | 745 } |
746 } | 746 } |
747 } | 747 } |
OLD | NEW |