Home | History | Annotate | Download | only in filtershow

Lines Matching defs:mainPanel

77 import com.android.gallery3d.filtershow.category.MainPanel;
181 private int mCurrentPanel = MainPanel.LOOKS;
296 MainPanel panel = new MainPanel();
298 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
315 transaction.remove(getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG));
316 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
320 Fragment main = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
326 if (doAnimation && main != null && main instanceof MainPanel) {
327 MainPanel mainPanel = (MainPanel) main;
328 View container = mainPanel.getView().findViewById(R.id.category_panel_container);
329 View bottom = mainPanel.getView().findViewById(R.id.bottom_panel);
331 ViewPropertyAnimator anim = mainPanel.getView().animate();
1188 Fragment panel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
1190 if (panel instanceof MainPanel) {
1191 MainPanel mainPanel = (MainPanel) panel;
1192 mainPanel.loadCategoryLookPanel(true);
1226 Fragment panel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
1231 } else if (panel instanceof MainPanel) {
1232 MainPanel mainPanel = (MainPanel) panel;
1233 mainPanel.showImageStatePanel(mShowingImageStatePanel);
1240 Fragment panel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
1241 if (panel != null && panel instanceof MainPanel) {
1242 MainPanel mainPanel = (MainPanel) panel;
1243 mainPanel.loadCategoryVersionsPanel();
1319 Fragment currentPanel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
1320 if (currentPanel instanceof MainPanel) {
1329 Fragment currentPanel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
1330 if (currentPanel instanceof MainPanel) {