/frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/ |
TestAppWidgetProvider.java | 50 RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.test_appwidget); local 51 views.setTextViewText(R.id.oh_hai_text, "hai: " + SystemClock.elapsedRealtime()); 53 gm.updateAppWidget(appWidgetIds, views); 56 "com.android.tests.appwidgetprovider.TestAppWidgetProvider"), views);
|
/packages/apps/Gallery2/res/layout/ |
photo_set_item.xml | 9 <com.android.photos.views.SquareImageView
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
AttachmentDeletionInterface.java | 7 * Interface for views in the compose layout that represent
|
/frameworks/base/docs/html/design/patterns/ |
swipe-views.jd | 1 page.title=Swipe Views 8 <p>Creating Swipe Views with Tabs</p> 14 vertical hierarchies and make access to related data items faster and more enjoyable. Swipe views 17 <h2 id="detail-views">Swiping Between Detail Views</h2> 25 Master (left) and detail (right) views. 35 Navigating between consecutive email messages using the swipe gesture. If a view contains content that exceeds the width of the screen such as a wide email message, make sure the user's initial swipes will scroll horizontally within the view. Once the end of the content is reached, an additional swipe should navigate to the next view. In addition, support the use of edge swipes to immediately navigate between views when content scrolls horizontally. 62 <p>If your app uses action bar tabs, use swipe to navigate between the different views.</p> 68 <p>Use swipe to quickly navigate between detail views or tabs.</p> 71 <p>Transition between the views as the user performs the swipe gesture. Do not wait for th [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
FocusHighlight.java | 27 * A small zoom factor, recommended for large item views. 32 * A medium zoom factor, recommended for medium sized item views. 37 * A large zoom factor, recommended for small item views.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/ |
DetailsView.java | 17 package com.android.ide.eclipse.gltrace.views.detail; 20 import com.android.ide.eclipse.gltrace.views.GLPageBookView; 25 public static final String ID = "com.android.ide.eclipse.gltrace.views.Details"; //$NON-NLS-1$
|
/developers/samples/android/notification/CustomNotifications/ |
template-params.xml | 28 This sample demonstrates notifications with custom content views. 54 This sample demonstrates notifications with custom content views. 55 The use of collapsed and expanded notification views are shown. 60 This sample demonstrates notifications with custom content views. It 67 - Define custom layouts for collapsed and expanded views.
|
/developers/samples/android/ui/views/Elevation/ElevationDrag/ |
template-params.xml | 32 z-translation are used to render the shadows and the views are clipped using different 45 <categories>UI, Views</categories> 60 z-translation are used to render the shadows and the views are clipped using different 68 z-translation are used to render the shadows and the views are clipped using different 76 See [Assign Elevation to Your Views][1] for more info.
|
/external/droiddriver/src/io/appium/droiddriver/instrumentation/ |
InstrumentationDriver.java | 67 List<View> views = RootFinder.getRootViews(); 68 if (views.size() > 1) { 69 Logs.log(Log.VERBOSE, "views.size()=" + views.size()); 70 for (View view : views) {
|
/external/skia/gyp/ |
iOSShell.gyp | 21 'views.gyp:views', 27 '../src/views/mac/SkEventNotifier.mm', 46 '../src/views/ios/SkOSWindow_iOS.mm', 68 '../src/views/mac',
|
/external/skia/src/views/mac/ |
skia_mac.mm | 73 NSDictionary *views = NSDictionaryOfVariableBindings(customView); 79 views:views]]; 85 views:views]];
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
AdjacentListsWithAdjacentISVsInside.java | 85 private static View combineAdjacent(View... views) { 86 if (views.length < 2) { 87 throw new IllegalArgumentException("you should pass at least 2 views in"); 90 final LinearLayout ll = new LinearLayout(views[0].getContext()); 95 for (View view : views) {
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallLogListItemHelper.java | 31 * Helper class to fill in the views of a call log entry. 61 * @param views the views to populate 65 CallLogListItemViewHolder views, 67 mPhoneCallDetailsHelper.setPhoneCallDetails(views.phoneCallDetailsViews, details); 70 views.quickContactView.setContentDescription(getContactBadgeDescription(details)); 73 views.primaryActionView.setContentDescription(getCallDescription(details)); 77 views.nameOrNumber = getNameOrNumber(details); 81 views.callTypeOrLocation = mPhoneCallDetailsHelper.getCallTypeOrLocation(details); 84 views.countryIso = details.countryIso [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAppWidgetManager.java | 71 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) { 73 updateAppWidget(appWidgetId, views); 78 * Simulates updating an {@code AppWidget} with a new set of views 81 * @param views views to update 84 public void updateAppWidget(int appWidgetId, RemoteViews views) { 86 int layoutId = views.getLayoutId(); 91 widgetInfo.lastRemoteViews = views; 92 views.reapply(context, widgetInfo.view); 190 * Non-Android mechanism that enables testing of widget behavior when all of the views are recreated on ever [all...] |
/frameworks/base/core/java/android/widget/ |
HeterogeneousExpandableList.java | 31 * Lists that contain different types of group and/or child item views, should use an adapter that 32 * implements this interface. This way, the recycled views that will be provided to 37 * previously created views. 46 * @return An integer representing the type of group View. Two group views should share the same 63 * @return An integer representing the type of child View. Two child views should share the same 75 * Returns the number of types of group Views that will be created by 77 * . Each type represents a set of views that can be converted in 84 * @return The number of types of group Views that will be created by this adapter. 92 * Returns the number of types of child Views that will be created by 94 * . Each type represents a set of views that can be converted i [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
PhotoAppWidgetProvider.java | 66 RemoteViews views = buildWidget(context, id, entry); local 67 appWidgetManager.updateAppWidget(id, views); 81 RemoteViews views = new RemoteViews( local 92 views.setRemoteAdapter(widgetId, R.id.appwidget_stack_view, intent); 94 views.setEmptyView(R.id.appwidget_stack_view, R.id.appwidget_empty_view); 99 views.setPendingIntentTemplate(R.id.appwidget_stack_view, pendingIntent); 101 return views; 105 RemoteViews views = new RemoteViews( local 110 views.setImageViewBitmap(R.id.photo, bitmap); 122 views.setOnClickPendingIntent(R.id.photo, pendingClickIntent) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/ |
plugin.xml | 6 point="org.eclipse.ui.views"> 13 class="com.android.ide.eclipse.gltrace.views.FrameSummaryView" 15 id="com.android.ide.eclipse.gltrace.views.FrameBuffer" 21 class="com.android.ide.eclipse.gltrace.views.StateView" 23 id="com.android.ide.eclipse.gltrace.views.State" 29 class="com.android.ide.eclipse.gltrace.views.detail.DetailsView" 31 id="com.android.ide.eclipse.gltrace.views.Details"
|
/packages/apps/Calendar/src/com/android/calendar/widget/ |
CalendarAppWidgetService.java | 202 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, R.id.date, View.VISIBLE, dayInfo.mDayLabel) [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
SettingsAppWidgetProvider.java | 196 * Updates the remote views depending on the state (off, on, 199 public final void setImageViewResources(Context context, RemoteViews views) { 206 views.setContentDescription(containerId, 208 views.setImageViewResource(buttonId, getButtonImageId(false)); 209 views.setImageViewResource( 213 views.setContentDescription(containerId, 215 views.setImageViewResource(buttonId, getButtonImageId(true)); 216 views.setImageViewResource( 226 views.setContentDescription(containerId, 228 views.setImageViewResource(buttonId, getButtonImageId(true)) 691 RemoteViews views = new RemoteViews(context.getPackageName(), local 717 RemoteViews views = buildUpdate(context); local [all...] |
/external/ceres-solver/internal/ceres/ |
canonical_views_clustering.cc | 55 // Compute the canonical views clustering of the vertices of the 57 // as the canonical views/cluster centers, and membership is a map 94 VLOG(2) << "Canonical views clustering time (secs): " 149 const IntSet& views = graph_->vertices(); local 150 for (IntSet::const_iterator view = views.begin(); 151 view != views.end(); 160 // added to the set of canonical views. 169 // was added to the list of canonical views and its nearest 183 // Number of views penalty. 195 // Reassign views if they're more similar to the new canonical view 227 const IntSet& views = graph_->vertices(); local [all...] |
/frameworks/base/docs/html/training/material/ |
shadows-clipping.jd | 1 page.title=Defining Shadows and Clipping Views 9 <li><a href="#Elevation">Assign Elevation to Your Views</a></li> 11 <li><a href="#Clip">Clip Views</a></li> 25 shadow: views with higher Z values cast larger, softer shadows. Views with higher Z values occlude 26 views with lower Z values; however, the Z value of a view does not affect the view's size.</p> 39 <h2 id="Elevation">Assign Elevation to Your Views</h2> 62 you to easily animate the elevation of views. For more information, see the API reference for 115 {@link android.graphics.Outline} class. The default outline provider for views obtains the outline 120 <h2 id="Clip">Clip Views</h2 [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_sampler.c | 141 struct pipe_sampler_view **views) 153 !memcmp(llvmpipe->sampler_views[shader] + start, views, 160 /* set the new sampler views */ 163 views[i]); 188 struct pipe_sampler_view **views) 190 llvmpipe_set_sampler_views(pipe, PIPE_SHADER_FRAGMENT, 0, num, views); 197 struct pipe_sampler_view **views) 199 llvmpipe_set_sampler_views(pipe, PIPE_SHADER_VERTEX, 0, num, views); 206 struct pipe_sampler_view **views) 208 llvmpipe_set_sampler_views(pipe, PIPE_SHADER_GEOMETRY, 0, num, views); [all...] |
/frameworks/base/docs/html/training/animation/ |
crossfade.jd | 1 page.title=Crossfading Two Views 14 <a href="#views">Create the Views</a> 20 <a href="#animate">Crossfade the Views</a> 38 another. This animation is useful for situations where you want to switch content or views 74 <h2 id="views"> 75 Create the Views 78 Create the two views that you want to crossfade. The following example creates a progress 115 <li>Create member variables for the views that you want to crossfade. You need 116 these references later when modifying the views during the animation [all...] |
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/ |
MainActivityTest.java | 68 List<Map<Short, Object>> views = parser.getViews(); local 71 assertEquals(1, views.size()); 74 Map<Short, Object> textViewProperties = views.get(0);
|
/packages/apps/DeskClock/src/com/android/alarmclock/ |
AnalogAppWidgetProvider.java | 40 final RemoteViews views = new RemoteViews(packageName, R.layout.analog_appwidget); local 45 views.setOnClickPendingIntent(R.id.analog_appwidget, pendingIntent); 48 AppWidgetManager.getInstance(context).updateAppWidget(appWidgetIds, views);
|