Searched defs:views (Results 1 - 25 of 32) sorted by relevance

12

/packages/apps/Mms/src/org/w3c/dom/views/
H A DAbstractView.java13 package org.w3c.dom.views;
16 * A base interface that all views shall derive from.
H A DDocumentView.java13 package org.w3c.dom.views;
/packages/apps/Gallery2/src/com/android/photos/views/
H A DSquareImageView.java17 package com.android.photos.views;
H A DHeaderGridView.java17 package com.android.photos.views;
94 * called more than once, the views will appear in the order they were
98 * the supplied cursor with one that will also account for header views.
130 * called more than once, the views will appear in the order they were
134 * the supplied cursor with one that will also account for header views.
208 * ListAdapter used when a HeaderGridView has header views. This ListAdapter
209 * wraps another one and also keeps track of the header views and their
H A DBlockingGLTextureView.java17 package com.android.photos.views;
H A DTiledImageView.java17 package com.android.photos.views;
40 import com.android.photos.views.TiledImageRenderer.TileSource;
H A DGalleryThumbnailView.java17 package com.android.photos.views;
235 * @return Number of views added
433 * Important: this method will leave offscreen views attached if they
444 // There may be other offscreen views, but we need to maintain
461 // There may be other offscreen views, but we need to maintain
648 // and onscreen views if they have changed instead of removing all of the state here.
667 // Clear all layout records and views
H A DTiledImageRenderer.java17 package com.android.photos.views;
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogListItemHelper.java30 * Helper class to fill in the views of a call log entry.
56 * @param views the views to populate
61 public void setPhoneCallDetails(CallLogListItemViews views, PhoneCallDetails details, argument
63 mPhoneCallDetailsHelper.setPhoneCallDetails(views.phoneCallDetailsViews, details,
68 views.quickContactView.setContentDescription(getContactBadgeDescription(details));
71 views.primaryActionView.setContentDescription(getCallDescription(details));
78 configurePlaySecondaryAction(views, isHighlighted);
81 configureCallDetailsSecondaryAction(views, details);
85 views
95 configureCallDetailsSecondaryAction(CallLogListItemViews views, PhoneCallDetails details) argument
265 configurePlaySecondaryAction(CallLogListItemViews views, boolean isHighlighted) argument
[all...]
H A DCallLogAdapter.java176 /** Instance of helper class for managing views. */
513 // Get the views to bind to.
514 CallLogListItemViews views = CallLogListItemViews.fromView(view);
515 views.primaryActionView.setOnClickListener(mActionListener);
516 views.secondaryActionButtonView.setOnClickListener(mActionListener);
517 view.setTag(views);
521 * Binds the views in the entry to the data in the call log.
528 final CallLogListItemViews views = (CallLogListItemViews) view.getTag();
531 views.primaryActionView.setVisibility(View.VISIBLE);
532 views
882 setPhoto(CallLogListItemViews views, long photoId, Uri contactUri, String displayName, String identifier, int contactType) argument
891 setPhoto(CallLogListItemViews views, Uri photoUri, Uri contactUri, String displayName, String identifier, int contactType) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
H A DEditorPlaceHolder.java64 public void setOldViews(Vector<ImageShow> views) { argument
65 mOldViews = views;
/packages/apps/Music/src/com/android/music/
H A DMediaAppWidgetProvider.java68 final RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.album_appwidget);
70 views.setViewVisibility(R.id.title, View.GONE);
71 views.setTextViewText(R.id.artist, res.getText(R.string.widget_initial_text));
73 linkButtons(context, views, false /* not playing */);
74 pushUpdate(context, appWidgetIds, views);
77 private void pushUpdate(Context context, int[] appWidgetIds, RemoteViews views) { argument
81 gm.updateAppWidget(appWidgetIds, views);
83 gm.updateAppWidget(new ComponentName(context, this.getClass()), views);
114 final RemoteViews views = new RemoteViews(service.getPackageName(), R.layout.album_appwidget);
141 views
172 linkButtons(Context context, RemoteViews views, boolean playerActive) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorAnimator.java219 * Creates a translation-animation for the given views
221 private static void translateViews(List<Animator> animators, List<View> views, float fromY, argument
223 for (int i = 0; i < views.size(); i++) {
224 final View child = views.get(i);
234 * Traverses up the view hierarchy and returns all views physically below this item.
236 * @return List of views that are below the given view. Empty list if parent of view is null.
/packages/apps/Dialer/src/com/android/dialer/
H A DPhoneCallDetailsHelper.java40 * Helper class to fill in the views in {@link PhoneCallDetailsViews}.
69 /** Fills the call details views with content. */
70 public void setPhoneCallDetails(PhoneCallDetailsViews views, PhoneCallDetails details, argument
73 views.callTypeIcons.clear();
76 views.callTypeIcons.add(details.callTypes[index]);
78 views.callTypeIcons.requestLayout();
79 views.callTypeIcons.setVisibility(View.VISIBLE);
96 setCallCountAndDate(views, callCount, dateText, highlightColor);
117 views.nameView.setTextDirection(View.TEXT_DIRECTION_LTR);
125 views
199 setCallCountAndDate(PhoneCallDetailsViews views, Integer callCount, CharSequence dateText, Integer highlightColor) argument
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFocusHelper.java572 ArrayList<View> views = new ArrayList<View>();
574 views.add(parent.getChildAt(j));
576 Collections.sort(views, new Comparator<View>() {
586 return views;
594 private static View findIndexOfIcon(ArrayList<View> views, int i, int delta) { argument
596 final int count = views.size();
599 View newV = views.get(newI);
609 final ArrayList<View> views = getCellLayoutChildrenSortedSpatially(layout, parent);
610 return findIndexOfIcon(views, i, delta);
614 final ArrayList<View> views
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFocusHelper.java571 ArrayList<View> views = new ArrayList<View>();
573 views.add(parent.getChildAt(j));
575 Collections.sort(views, new Comparator<View>() {
585 return views;
593 private static View findIndexOfIcon(ArrayList<View> views, int i, int delta) { argument
595 final int count = views.size();
598 View newV = views.get(newI);
608 final ArrayList<View> views = getCellLayoutChildrenSortedSpatially(layout, parent);
609 return findIndexOfIcon(views, i, delta);
613 final ArrayList<View> views
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSearchWidgetProvider.java163 RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.search_widget);
165 setOnClickActivityIntent(context, views, R.id.search_widget_text,
169 setOnClickActivityIntent(context, views, R.id.search_widget_voice_btn,
171 views.setViewVisibility(R.id.search_widget_voice_btn, View.VISIBLE);
173 views.setViewVisibility(R.id.search_widget_voice_btn, View.GONE);
176 appWidgetMgr.updateAppWidget(mAppWidgetId, views);
179 private void setOnClickActivityIntent(Context context, RemoteViews views, int viewId, argument
182 views.setOnClickPendingIntent(viewId, pendingIntent);
/packages/apps/Settings/src/com/android/settings/
H A DDeviceAdminAdd.java298 static void setViewVisibility(ArrayList<View> views, int visibility) { argument
299 final int N = views.size();
301 views.get(i).setVisibility(visibility);
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetService.java202 RemoteViews views = new RemoteViews(mContext.getPackageName(),
204 return views;
215 RemoteViews views = new RemoteViews(mContext.getPackageName(),
219 views.setOnClickFillInIntent(R.id.appwidget_loading, intent);
220 return views;
224 RemoteViews views = new RemoteViews(mContext.getPackageName(),
228 views.setOnClickFillInIntent(R.id.appwidget_no_events, intent);
229 return views;
234 RemoteViews views = new RemoteViews(mContext.getPackageName(),
237 updateTextView(views,
462 updateTextView(RemoteViews views, int id, int visibility, String string) argument
[all...]
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DCallLogFragmentTest.java99 // The list of views representing the data in the DB. View are in
138 * Use 2 passes, one where new views are created and one where
139 * half of the total views are updated and the other half created.
155 // views around so they get updated and not built from
202 CallLogListItemViews views = (CallLogListItemViews) view.getTag();
203 assertNameIs(views, TEST_NUMBER);
216 CallLogListItemViews views = (CallLogListItemViews) view.getTag();
217 assertNameIs(views, TEST_FORMATTED_NUMBER);
230 CallLogListItemViews views = (CallLogListItemViews) view.getTag();
231 assertNameIs(views, "Joh
642 assertNameIs(CallLogListItemViews views, String name) argument
648 assertLabel(CallLogListItemViews views, CharSequence number, CharSequence label) argument
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
H A DBlockingGLTextureView.java17 package com.android.photos.views;
H A DTiledImageView.java17 package com.android.photos.views;
40 import com.android.photos.views.TiledImageRenderer.TileSource;
H A DTiledImageRenderer.java17 package com.android.photos.views;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DTwoPaneLayout.java42 * This is a custom layout that manages the possible views of Gmail's large screen (read: tablet)
386 private void configureAnimations(View... views) { argument
387 for (View v : views) {
408 // (i.e. these views must already be attached)
/packages/apps/Settings/src/com/android/settings/widget/
H A DSettingsAppWidgetProvider.java195 * Updates the remote views depending on the state (off, on,
198 public final void setImageViewResources(Context context, RemoteViews views) { argument
205 views.setContentDescription(containerId,
207 views.setImageViewResource(buttonId, getButtonImageId(false));
208 views.setImageViewResource(
212 views.setContentDescription(containerId,
214 views.setImageViewResource(buttonId, getButtonImageId(true));
215 views.setImageViewResource(
225 views.setContentDescription(containerId,
227 views
726 updateButtons(RemoteViews views, Context context) argument
[all...]

Completed in 450 milliseconds

12