HomeSort by relevance Sort by last modified time
    Searched refs:newView (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
LayoutChangesActivity.java 81 final ViewGroup newView = (ViewGroup) LayoutInflater.from(this).inflate(
85 ((TextView) newView.findViewById(android.R.id.text1)).setText(
89 newView.findViewById(R.id.delete_button).setOnClickListener(new View.OnClickListener() {
95 mContainerView.removeView(newView);
106 mContainerView.addView(newView, 0);
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimCtsActivity.java 94 ImageView newView = new ImageView(GridLayoutAnimCtsActivity.this);
97 newView.setLayoutParams(params);
98 newView.setImageResource(R.drawable.size_48x48);
99 return newView;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java 34 public View newView(Context context, ViewGroup parent);
49 public View newView(Context context, ViewGroup parent) {
67 public View newView(Context context, Cursor cursor, ViewGroup parent) {
68 View view = mViewFactory.newView(context, parent);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
AutoSizingList.java 95 View newView = mAdapter.getView(i, v, this);
96 if (newView != v) {
100 addView(newView, i);
PseudoGridView.java 180 View newView = mAdapter.getView(i, oldView, viewGroup);
183 viewGroup.addView(newView);
184 } else if (oldView != newView) {
187 viewGroup.addView(newView, i);
  /packages/apps/TV/src/com/android/tv/menu/
MenuView.java 250 View newView = super.focusSearch(focused, direction);
252 MenuRowView newFocusedParent = getParentMenuRowView(newView);
263 return newView;
265 View newView = super.focusSearch(focused, direction);
267 MenuRowView newFocusedParent = getParentMenuRowView(newView);
279 return newView;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 73 return newView(unmodifiableSortedMap(delegate), comparator);
152 return newView(unmodifiableSortedMap(delegate), comparator);
213 return newView(unmodifiableSortedMap(delegate), comparator);
259 return newView(sortedDelegate.headMap(toKey));
278 return newView(sortedDelegate.subMap(fromKey, toKey));
290 return newView(sortedDelegate.tailMap(fromKey));
304 private ImmutableSortedMap<K, V> newView(SortedMap<K, V> delegate) {
305 return newView(delegate, comparator);
308 private static <K, V> ImmutableSortedMap<K, V> newView(
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 91 View result = mResourceCursorAdapter.newView(null, null, mParent);
97 result = mResourceCursorAdapter.newView(null, null, mParent);
122 result = mResourceCursorAdapter.newView(null, null, mParent);
150 View result = mResourceCursorAdapter.newView(null, null, mParent);
156 result = mResourceCursorAdapter.newView(null, null, mParent);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 88 public View newView(Context context, Cursor cursor, ViewGroup parent) {
89 View view = super.newView(context, cursor, parent);
RedirectMain.java 46 Button newButton = (Button)findViewById(R.id.newView);
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 77 protected ContactListItemView newView(
80 super.newView(context, partition, cursor, position, parent);
HeaderEntryContactListAdapter.java 63 itemView = newView(getContext(), 0, getCursor(0), 0, parent);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResourceCursorAdapter.java 79 * @see android.widget.CursorAdapter#newView(android.content.Context,
83 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /frameworks/support/core-ui/java/android/support/v4/widget/
ResourceCursorAdapter.java 107 * @see android.widget.CursorAdapter#newView(android.content.Context,
111 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /packages/apps/Calendar/src/com/android/calendar/
StickyHeaderListView.java 269 boolean newView = false;
280 newView = true;
290 newView = true;
327 if (newView) {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastCursorAdapter.java 46 public View newView(Context context, Cursor cursor, ViewGroup parent) {
59 * @param view Existing view, returned earlier by newView
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
GalleryGridAdapter.java 58 public View newView(final Context context, final Cursor cursor, final ViewGroup parent) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationInflater.java 352 View newView = existingView;
354 newView = newContentView.apply(
366 onViewApplied(newView);
490 * @param newView The new view that will be applied
495 static boolean canReapplyRemoteView(final RemoteViews newView,
497 return (newView == null && oldView == null) ||
498 (newView != null && oldView != null
500 && newView.getPackage() != null
501 && newView.getPackage().equals(oldView.getPackage())
502 && newView.getLayoutId() == oldView.getLayoutId(
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
CollapsedAlarmViewHolder.java 198 final View newView = newHolder.itemView;
199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView)
221 final View newView = itemView;
222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView)
229 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
GalleryGridAdapter.java 66 view = newView(context, getCursor(), parent);
91 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /frameworks/base/core/java/android/widget/
ResourceCursorAdapter.java 130 * @see android.widget.CursorAdapter#newView(android.content.Context,
134 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 213 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
216 mUserSwitcher.addView(newView);
217 } else if (oldView != newView) {
220 mUserSwitcher.addView(newView, i);
  /packages/apps/Gallery2/src/com/android/photos/adapters/
AlbumSetCursorAdapter.java 71 public View newView(Context context, Cursor cursor, ViewGroup parent) {
PhotoThumbnailAdapter.java 58 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactListAdapter.java 61 public View newView(final Context context, final Cursor cursor, final ViewGroup parent) {

Completed in 1610 milliseconds

1 2 3 4 5 6 7