Home | History | Annotate | Download | only in filtershow

Lines Matching defs:mainPanel

126     private int mCurrentPanel = MainPanel.LOOKS;
161 MainPanel panel = new MainPanel();
163 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
181 transaction.remove(getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG));
182 transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
186 Fragment main = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
192 if (doAnimation && main != null && main instanceof MainPanel) {
193 MainPanel mainPanel = (MainPanel) main;
194 View container = mainPanel.getView().findViewById(R.id.category_panel_container);
195 View bottom = mainPanel.getView().findViewById(R.id.bottom_panel);
197 mainPanel.getView().animate().translationY(panelHeight).withEndAction(showEditor).start();
804 Fragment panel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
809 } else if (panel instanceof MainPanel) {
810 MainPanel mainPanel = (MainPanel) panel;
811 mainPanel.showImageStatePanel(mShowingImageStatePanel);
871 Fragment currentPanel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
872 if (currentPanel instanceof MainPanel) {
881 Fragment currentPanel = getSupportFragmentManager().findFragmentByTag(MainPanel.FRAGMENT_TAG);
882 if (currentPanel instanceof MainPanel) {