HomeSort by relevance Sort by last modified time
    Searched defs:topPanel (Results 1 - 25 of 29) sorted by null

1 2

  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
Launcher.java 80 Panel topPanel = new Panel();
81 topPanel.setLayout(new GridLayout(5,3));
88 topPanel.add(b);
90 add(BorderLayout.CENTER,topPanel);
  /frameworks/base/core/java/com/android/internal/widget/
AlertDialogLayout.java 38 * <li>topPanel: exactly wrap_content</li>
74 View topPanel = null;
87 case R.id.topPanel:
88 topPanel = child;
114 if (topPanel != null) {
115 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
117 usedHeight += topPanel.getMeasuredHeight();
118 childState = combineMeasuredStates(childState, topPanel.getMeasuredState());
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarCalc.java 175 Panel topPanel = new Panel();
176 topPanel.setLayout(new FlowLayout());
185 topPanel.add(label);
187 topPanel.add(calendars[i].text);
197 topPanel.add(calendars[i].rollAdd);
203 topPanel.add(label4);
207 topPanel.add(patternText);
208 topPanel.add(new Label(""));
210 DemoUtility.fixGrid(topPanel,3);
211 add(topPanel);
    [all...]
CalendarFrame.java 119 Panel topPanel = new Panel();
121 topPanel.setLayout(g);
143 add(topPanel, calMenu[i], g, c, 5, 0);
144 add(topPanel, monthLabel[i], g, c, GridBagConstraints.REMAINDER, 1);
170 add(topPanel, prevYear, g, c, 1, 0);
171 add(topPanel, prevMonth, g, c, 1, 0);
172 add(topPanel, gotoToday, g, c, 1, 0);
173 add(topPanel, nextMonth, g, c, 1, 0);
174 add(topPanel, nextYear, g, c, 1, 0);
228 add(topPanel, displayPanel, g, c, GridBagConstraints.REMAINDER, 0)
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 307 Panel topPanel = new Panel();
309 topPanel.setLayout(new BorderLayout());
311 //topPanel.add("North", titleLabel);
312 topPanel.add("Center", monthPanel);
313 topPanel.add("East", menuPanel);
315 add("North", topPanel);
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 472 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
481 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
486 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
492 setupTitle(topPanel);
496 final boolean hasTopPanel = topPanel != null
497 && topPanel.getVisibility() != View.GONE;
522 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
525 divider = topPanel.findViewById(R.id.titleDivider);
529 divider = topPanel.findViewById(R.id.titleDividerTop);
561 setBackground(a, topPanel, contentPanel, customPanel, buttonPanel
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertController.java 445 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
454 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
459 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
465 setupTitle(topPanel);
469 final boolean hasTopPanel = topPanel != null
470 && topPanel.getVisibility() != View.GONE;
628 private void setupTitle(ViewGroup topPanel) {
630 // Add the custom title view directly to the topPanel layout
634 topPanel.addView(mCustomTitleView, 0, lp);
669 topPanel.setVisibility(View.GONE)
    [all...]