Home
last modified time | relevance | path

Searched refs:panel (Results 1 – 25 of 52) sorted by relevance

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPanelBar.java109 final PanelView panel = selectPanelForTouch(event); in onTouchEvent() local
110 if (panel == null) { in onTouchEvent()
117 boolean enabled = panel.isEnabled(); in onTouchEvent()
118 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel, in onTouchEvent()
124 panel, (int) event.getX(), (int) event.getY())); in onTouchEvent()
128 startOpeningPanel(panel); in onTouchEvent()
137 public void startOpeningPanel(PanelView panel) { in startOpeningPanel() argument
138 if (DEBUG) LOG("startOpeningPanel: " + panel); in startOpeningPanel()
139 mTouchingPanel = panel; in startOpeningPanel()
142 if (pv != panel) { in startOpeningPanel()
[all …]
DPhoneStatusBarView.java147 public void onTrackingStarted(PanelView panel) { in onTrackingStarted() argument
148 super.onTrackingStarted(panel); in onTrackingStarted()
160 public void onTrackingStopped(PanelView panel, boolean expand) { in onTrackingStopped() argument
161 super.onTrackingStopped(panel, expand); in onTrackingStopped()
177 public void panelExpansionChanged(PanelView panel, float frac, boolean expanded) { in panelExpansionChanged() argument
178 super.panelExpansionChanged(panel, frac, expanded); in panelExpansionChanged()
/frameworks/base/docs/html-intl/intl/es/training/multiscreen/
Dadaptui.jd42 … modo de panel dual, haz clic en un elemento del panel izquierdo para que aparezca en el panel de …
47 …or ejemplo, puedes determinar si el usuario utiliza el modo de "panel único" o de "panel dual". Pa…
65 <p>Ten en cuenta que este código consulta la disponibilidad del panel del "artículo", lo que es muc…
80panel situado a la derecha si la interfaz de usuario está en modo de panel dual, pero se iniciará …
99 …en modo de panel dual, debe configurar la barra de acción con pestañas para la navegación, mientra…
129panel en algunas configuraciones de pantalla y como actividad independiente en otras. Por ejemplo,…
131 …s actividades. Por ejemplo, <code>ArticleFragment</code> se utiliza en el diseño de panel dual:</p>
189 …ar el artículo de noticias en el modo vertical, pero utiliza el diseño de panel dual en el modo ho…
191 …lver a la actividad principal para que el contenido pueda mostrarse en el diseño de panel dual:</p>
Dscreensizes.jd123 … el patrón de "panel dual" para pantallas grandes (la aplicación mostraría una lista de elementos …
126 <li><code>res/layout/main.xml</code>, diseño de panel único (predeterminado):
130 <li><code>res/layout-large/main.xml</code>, diseño de panel dual:
143panel dual en esta pantalla (y una única lista en pantallas más pequeñas), puedes utilizar los mis…
146 <li><code>res/layout/main.xml</code>, diseño de panel único (predeterminado):
150 <li><code>res/layout-sw600dp/main.xml</code>, diseño de panel dual:
156 …00dp/main.xml</code> (panel dual), mientras que las pantallas más pequeñas utilizarán el diseño <c…
163 …nes anteriores. Por ejemplo, si quieres que tu interfaz de usuario sea de panel único en teléfonos…
166 <li><code>res/layout/main.xml:</code> diseño de panel único,</li>
176 <li><code>res/layout/main.xml</code>: diseño de panel único,</li>
[all …]
/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java217 public void onPanelSlide(View panel, float slideOffset); in onPanelSlide() argument
223 public void onPanelOpened(View panel); in onPanelOpened() argument
230 public void onPanelClosed(View panel); in onPanelClosed() argument
239 public void onPanelSlide(View panel, float slideOffset) { in onPanelSlide() argument
242 public void onPanelOpened(View panel) { in onPanelOpened() argument
245 public void onPanelClosed(View panel) { in onPanelClosed() argument
332 void dispatchOnPanelSlide(View panel) { in dispatchOnPanelSlide() argument
334 mPanelSlideListener.onPanelSlide(panel, mSlideOffset); in dispatchOnPanelSlide()
338 void dispatchOnPanelOpened(View panel) { in dispatchOnPanelOpened() argument
340 mPanelSlideListener.onPanelOpened(panel); in dispatchOnPanelOpened()
[all …]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DActionBarActivityDelegateBase.java543 final PanelFeatureState panel = findMenuPanel(menu.getRootMenu());
544 if (panel != null) {
545 return cb.onMenuItemSelected(panel.featureId, item);
1244 private void callOnPanelClosed(int featureId, PanelFeatureState panel, Menu menu) {
1248 if (panel == null) {
1250 panel = mPanels[featureId];
1254 if (panel != null) {
1256 menu = panel.menu;
1261 if ((panel != null) && (!panel.isOpen))
1271 final PanelFeatureState panel = panels[i];
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
DSizeAdaptiveLayoutTest.java422 View panel = mSizeAdaptiveLayout.getModestyPanel(); in testModestyPanelChangesColorWhite() local
424 panel.getBackground() instanceof ColorDrawable); in testModestyPanelChangesColorWhite()
425 ColorDrawable panelColor = (ColorDrawable) panel.getBackground(); in testModestyPanelChangesColorWhite()
434 View panel = mSizeAdaptiveLayout.getModestyPanel(); in testModestyPanelTracksStateListColor() local
436 panel.getBackground().getClass(), ColorDrawable.class); in testModestyPanelTracksStateListColor()
437 ColorDrawable panelColor = (ColorDrawable) panel.getBackground(); in testModestyPanelTracksStateListColor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
DRecentsActivity.java73 public TouchOutsideListener(StatusBarPanel panel) { in TouchOutsideListener() argument
74 mPanel = panel; in TouchOutsideListener()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DPhoneWindow.java1029 final PanelFeatureState panel = panels[i]; in closeAllPanels() local
1030 if (panel != null) { in closeAllPanels()
1031 closePanel(panel, true); in closeAllPanels()
1120 final PanelFeatureState panel = panels[i]; in findMenuPanel() local
1121 if (panel != null && panel.menu == menu) { in findMenuPanel()
1122 return panel; in findMenuPanel()
1131 final PanelFeatureState panel = findMenuPanel(menu.getRootMenu()); in onMenuItemSelected() local
1132 if (panel != null) { in onMenuItemSelected()
1133 return cb.onMenuItemSelected(panel.featureId, item); in onMenuItemSelected()
2123 final PanelFeatureState panel = findMenuPanel(isSubMenu ? parentMenu : menu); in onCloseMenu() local
[all …]
/frameworks/base/docs/html/tools/debugging/
Ddebugging-tracing.jd44 <li>A <a href="#timelinepanel">timeline panel</a> -- describes when each thread and method
47 <li>A <a href="#timelinepanel">profile panel</a> -- provides a summary of what happened inside
55 <p>Figure 1 shows a close up of the timeline panel. Each thread&rsquo;s execution is shown
62 alt="Traceview timeline panel"
78 …<code>LoadListener.nativeFinished();</code> looking at the timeline panel shows that one of those …
82 alt="Traceview profile panel."
Ddebugging-projects-cmdline.jd65 …for debugger" in the Development settings panel the application will run when Android Studio conne…
Ddebugging-memory.jd116 <li>In the right-side panel, select the <strong>Heap</strong> tab.</li>
151 <li>In the DDMS window, select your app's process in the left-side panel.</li>
152 <li>In the right-side panel, select the <strong>Allocation Tracker</strong> tab.</li>
355 <li>In the DDMS window, select your app's process in the left-side panel.</li>
/frameworks/base/docs/html/guide/appendix/
Dglossary.jd274 <dt id="panel">Panel</dt>
275 <dd> A panel is a concept not backed by a specific class. It is a View of
277 clicks and perform simple functions related to its parent. A panel floats
279 of a panel (implemented by Android) is the options menu available to every
281 a panel &mdash; it's more of a general idea. </dd>
284 <dt id="panel">Window</dt>
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags61 # when the notification panel is shown
64 # when the notification panel is hidden
/frameworks/base/docs/html/sdk/installing/
Dstudio-layout.jd74 Android Studio displays an error panel with links that you can click to supply the missing
120 window reveals a panel with a layout hierarchy and a list of properties for each view in
141 panel (at the bottom of the window by default). This takes a snapshot of your running app
/frameworks/base/docs/html/tools/building/
Dconfiguring-gradle.jd296 <li>On the <em>Project</em> panel, expand <strong>BuildSystemExample</strong>, and then expand
321 <li>On the <em>Project</em> panel, right click on the <strong>app</strong> module and select
358 <li>On the <em>Project</em> panel, right click on the <strong>demo</strong> directory under
379 of the IDE window and select the flavor you want to modify in the <em>Build Variants</em> panel,
381 one selected in the <em>Build Variants</em> panel, but this does not affect the outcome of the
385 <p class="img-caption"><strong>Figure 2.</strong> The Build Variants panel.</p>
/frameworks/base/docs/html/design/style/
Dtouch-feedback.jd72 <p><em>If a user attempts to scroll past the last home screen panel, the screen
/frameworks/base/docs/html/design/patterns/
Dwidgets.jd90 …he height and/or the width of a widget within the constraints of the home panel placement grid. Yo…
122 …their configuration choices right after the widget is dropped onto a home panel. Keep the widget c…
129 …After adding a Play widget to a home panel, the widget asks the user to specify the type of media …
Dmulti-pane-layouts.jd116 <p>Look for opportunities to consolidate your views into multi-panel compound views.</p>
/frameworks/base/docs/html/tools/help/
Dsystrace.jd56 style="margin:0"/> at the top of the <strong>Devices</strong> panel to configure tracing.</li>
76 style="margin:0"/> at the top of the <strong>Devices</strong> panel to configure tracing.</li>
95 style="margin:0"/> at the top of the <strong>Devices</strong> panel to configure tracing.</li>
/frameworks/base/docs/html/google/play/billing/
Dbilling_admin.jd108 <li>In the <strong>All Applications</strong> panel, click on the
373 <li>In the <strong>All Applications</strong> panel, click on the app
482 <li>Locate the License Testing panel.</li>
493 <li>Open the <strong>All Applications</strong> panel.</li>
507 <strong>Services &amp; APIs</strong> panel.
/frameworks/base/docs/html/tools/testing/
Dtesting_eclipse.jd100 In the <em>Content</em> panel, examine the suggested path to the project.
115 In the Test Target panel, set An Existing Android Project, click Browse, then select your
118 the Properties panel).
121 In the Build Target panel, select the Android SDK platform that the application under test
/frameworks/base/docs/html/training/improving-layouts/
Dreusing-layouts.jd44 example, a yes/no button panel, or custom progress bar with description text.
/frameworks/base/docs/html/guide/faq/
Dtroubleshooting.jd142 <li>In the Devices panel (top right panel by default), click on the down triangle
143 to bring up the panel menu</li>
/frameworks/base/docs/html/design/handhelds/
Dindex.jd32 regardless of which panel is currently showing.</p>

123