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

1 2 3 4 5 6

  /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 95 ImageView newView = new ImageView(GridLayoutAnimCtsActivity.this);
98 newView.setLayoutParams(params);
99 newView.setImageResource(R.drawable.size_48x48);
100 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);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 107 * @param container The {@link View} to add newView to.
108 * @param newView The new {@link View} to add.
109 * @param existingView The {@link View} to insert the newView before.
110 * @return The index where newView was inserted, or -1 if it was not inserted.
112 public static int insertBefore(ViewGroup container, View newView, View existingView) {
113 return insertView(container, newView, existingView, false);
118 * @param container The {@link View} to add newView to.
119 * @param newView The new {@link View} to add.
120 * @param existingView The {@link View} to insert the newView after.
121 * @return The index where newView was inserted, or -1 if it was not inserted
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 78 View result = mResourceCursorAdapter.newView(null, null, mParent);
84 result = mResourceCursorAdapter.newView(null, null, mParent);
108 result = mResourceCursorAdapter.newView(null, null, mParent);
134 View result = mResourceCursorAdapter.newView(null, null, mParent);
140 result = mResourceCursorAdapter.newView(null, null, mParent);
SimpleCursorAdapterTest.java 114 TextView listItem = (TextView) simpleCursorAdapter.newView(mContext, null, null);
146 LinearLayout illegalView = (LinearLayout)simpleCursorAdapter.newView(mContext, null, null);
331 View result = simpleCursorAdapter.newView(mContext, null, viewGroup);
335 result = simpleCursorAdapter.newView(mContext, null, null);
357 TextView listItem = (TextView) simpleCursorAdapter.newView(mContext, null, null);
  /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);
  /external/robolectric/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/base/core/java/android/widget/
ResourceCursorAdapter.java 99 * @see android.widget.CursorAdapter#newView(android.content.Context,
103 public View newView(Context context, Cursor cursor, ViewGroup parent) {
CursorAdapter.java 250 v = newView(mContext, mCursor, parent);
283 public abstract View newView(Context context, Cursor cursor, ViewGroup parent);
294 return newView(context, cursor, parent);
299 * @param view Existing view, returned earlier by newView
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PseudoGridView.java 180 View newView = mAdapter.getView(i, oldView, viewGroup);
183 viewGroup.addView(newView);
184 } else if (oldView != newView) {
187 viewGroup.addView(newView, i);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 185 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
188 mUserSwitcher.addView(newView);
189 } else if (oldView != newView) {
192 mUserSwitcher.addView(newView, i);
  /frameworks/support/v4/java/android/support/v4/widget/
ResourceCursorAdapter.java 101 * @see android.widget.CursorAdapter#newView(android.content.Context,
105 public View newView(Context context, Cursor cursor, ViewGroup parent) {
CursorAdapter.java 252 v = newView(mContext, mCursor, parent);
285 public abstract View newView(Context context, Cursor cursor, ViewGroup parent);
296 return newView(context, cursor, parent);
301 * @param view Existing view, returned earlier by newView
  /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/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 80 protected ContactListItemView newView(
83 super.newView(context, partition, cursor, position, parent);
HeaderEntryContactListAdapter.java 65 itemView = newView(getContext(), 0, getCursor(0), 0, parent);
  /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/Mms/src/com/android/mms/ui/
ConversationListAdapter.java 67 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /packages/apps/Browser/src/com/android/browser/util/
ThreadedCursorAdapter.java 66 public View newView(Context context, Cursor cursor, ViewGroup parent) {
165 convertView = newView(mContext, parent);
208 public abstract View newView(Context context, ViewGroup parent);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java     [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 336 final View newView = newHolder != null ? newHolder.itemView : null;
359 if (newView != null) {
361 final ViewPropertyAnimatorCompat newViewAnimation = ViewCompat.animate(newView);
371 ViewCompat.setAlpha(newView, 1);
372 ViewCompat.setTranslationX(newView, 0);
373 ViewCompat.setTranslationY(newView, 0);

Completed in 668 milliseconds

1 2 3 4 5 6