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

1 2 3 4 5

  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
DialogModifier.java 44 View newView = dialog.getWindow().getDecorView();
47 dialog.getWindow().getWindowManager().removeView(newView);
50 parent.addView(newView);
52 return newView;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 64 * @param container The {@link View} to add newView to.
65 * @param newView The new {@link View} to add.
66 * @param existingView The {@link View} to insert the newView before.
67 * @return The index where newView was inserted, or -1 if it was not inserted.
69 public static int insertBefore(ViewGroup container, View newView, View existingView) {
70 return insertView(container, newView, existingView, false);
75 * @param container The {@link View} to add newView to.
76 * @param newView The new {@link View} to add.
77 * @param existingView The {@link View} to insert the newView after.
78 * @return The index where newView was inserted, or -1 if it was not inserted
    [all...]
  /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/src/android/view/animation/cts/
GridLayoutAnimStubActivity.java 95 ImageView newView = new ImageView(GridLayoutAnimStubActivity.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);
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 44 convertView = newView();
50 private View newView() {
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedDownloadAdapter.java 47 convertView = mDelegate.newView();
DownloadAdapter.java 83 public View newView() {
207 public View newView(Context context, Cursor cursor, ViewGroup parent) {
208 return newView();
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 75 View result = mResourceCursorAdapter.newView(null, null, mParent);
81 result = mResourceCursorAdapter.newView(null, null, mParent);
104 result = mResourceCursorAdapter.newView(null, null, mParent);
128 View result = mResourceCursorAdapter.newView(null, null, mParent);
134 result = mResourceCursorAdapter.newView(null, null, mParent);
SimpleCursorAdapterTest.java 110 TextView listItem = (TextView) mSimpleCursorAdapter.newView(mContext, null, null);
142 LinearLayout illegalView = (LinearLayout)mSimpleCursorAdapter.newView(mContext, null, null);
311 View result = mSimpleCursorAdapter.newView(mContext, null, viewGroup);
315 result = mSimpleCursorAdapter.newView(mContext, null, null);
333 TextView listItem = (TextView) mSimpleCursorAdapter.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/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/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 66 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...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 63 public View newView(Context context, Cursor cursor, ViewGroup parent) {

Completed in 723 milliseconds

1 2 3 4 5