| /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
|
| /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);
|
| /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/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) {
|
| CursorAdapter.java | 285 v = newView(mContext, mCursor, parent); 319 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); 330 return newView(context, cursor, parent); 335 * @param view Existing view, returned earlier by newView
|
| /frameworks/support/cursoradapter/src/main/java/androidx/cursoradapter/widget/ |
| ResourceCursorAdapter.java | 107 * @see android.widget.CursorAdapter#newView(android.content.Context, 111 public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
| GalleryGridAdapter.java | 58 public View newView(final Context context, final Cursor cursor, final ViewGroup 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/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);
|
| /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;
|
| /development/samples/ApiDemos/src/com/example/android/apis/view/ |
| AutoComplete4.java | 63 public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
| ShadowCursorAdapterTest.java | 117 public View newView(Context context, Cursor cursor, ViewGroup parent) { 127 @Override public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /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) {
|
| /packages/apps/Messaging/src/com/android/messaging/ui/ |
| BlockedParticipantsFragment.java | 85 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) {
|
| /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);
|
| /frameworks/ex/common/tests/src/com/android/common/widget/ |
| CompositeCursorAdapterTest.java | 58 protected View newView(Context context, int sectionIndex, Cursor cursor, int position,
|
| /packages/apps/Contacts/src/com/android/contacts/list/ |
| LegacyContactListAdapter.java | 73 protected ContactListItemView newView(
|
| LegacyPhoneNumberListAdapter.java | 77 protected ContactListItemView newView( 80 super.newView(context, partition, cursor, position, parent);
|
| LegacyPostalAddressListAdapter.java | 78 protected ContactListItemView newView(
|
| /packages/apps/Settings/src/com/android/settings/applications/manageapplications/ |
| ApplicationViewHolder.java | 68 static View newView(ViewGroup parent) { 69 return newView(parent, false); 72 static View newView(ViewGroup parent, boolean twoTarget) {
|
| /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(
|
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
| CursorAdapterTest.java | 112 public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /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);
|