mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
ed9279760c
--HG-- rename : mobile/android/base/home/MostVisitedPage.java => mobile/android/base/home/TopSitesPage.java rename : mobile/android/base/resources/layout/home_most_visited_page.xml => mobile/android/base/resources/layout/home_top_sites_page.xml
109 lines
3.5 KiB
Java
109 lines
3.5 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.home;
|
|
|
|
import org.mozilla.gecko.R;
|
|
import org.mozilla.gecko.widget.IconTabWidget;
|
|
import android.support.v4.app.Fragment;
|
|
import android.content.Context;
|
|
import android.content.res.Configuration;
|
|
import android.content.res.Resources;
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.widget.ImageButton;
|
|
|
|
public class HistoryPage extends HomeFragment
|
|
implements IconTabWidget.OnTabChangedListener {
|
|
// Logging tag name
|
|
private static final String LOGTAG = "GeckoHistoryPage";
|
|
private IconTabWidget mTabWidget;
|
|
private int mSelectedTab;
|
|
private boolean initializeRecentPage;
|
|
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
return inflater.inflate(R.layout.home_history_page, container, false);
|
|
}
|
|
|
|
@Override
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
mTabWidget = (IconTabWidget) view.findViewById(R.id.tab_icon_widget);
|
|
|
|
mTabWidget.addTab(R.drawable.icon_most_recent, R.string.home_most_recent_title);
|
|
mTabWidget.addTab(R.drawable.icon_last_tabs, R.string.home_last_tabs_title);
|
|
|
|
mTabWidget.setTabSelectionListener(this);
|
|
mTabWidget.setCurrentTab(mSelectedTab);
|
|
|
|
loadIfVisible();
|
|
}
|
|
|
|
@Override
|
|
public void load() {
|
|
// Show most recent page as the initial page.
|
|
// Since we detach/attach on config change, this prevents from replacing current fragment.
|
|
if (!initializeRecentPage) {
|
|
showMostRecentPage();
|
|
initializeRecentPage = true;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onTabChanged(int index) {
|
|
if (index == mSelectedTab) {
|
|
return;
|
|
}
|
|
|
|
if (index == 0) {
|
|
showMostRecentPage();
|
|
} else if (index == 1) {
|
|
showLastTabsPage();
|
|
}
|
|
|
|
mTabWidget.setCurrentTab(index);
|
|
mSelectedTab = index;
|
|
}
|
|
|
|
@Override
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
super.onConfigurationChanged(newConfig);
|
|
|
|
// Rotation should detach and re-attach to use a different layout.
|
|
if (isVisible()) {
|
|
getFragmentManager().beginTransaction()
|
|
.detach(this)
|
|
.attach(this)
|
|
.commitAllowingStateLoss();
|
|
}
|
|
}
|
|
|
|
private void showSubPage(Fragment subPage) {
|
|
final Bundle args = new Bundle();
|
|
args.putBoolean(HomePager.CAN_LOAD_ARG, getCanLoadHint());
|
|
subPage.setArguments(args);
|
|
|
|
getChildFragmentManager().beginTransaction()
|
|
.addToBackStack(null).replace(R.id.history_page_container, subPage)
|
|
.commitAllowingStateLoss();
|
|
}
|
|
|
|
private void showMostRecentPage() {
|
|
final MostRecentPage mostRecentPage = MostRecentPage.newInstance();
|
|
showSubPage(mostRecentPage);
|
|
}
|
|
|
|
private void showLastTabsPage() {
|
|
final LastTabsPage lastTabsPage = LastTabsPage.newInstance();
|
|
showSubPage(lastTabsPage);
|
|
}
|
|
}
|