Searched defs:parent (Results 1 - 25 of 340) sorted by relevance

1234567891011>>

/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DUserDictionaryLocalePicker.java20 public UserDictionaryLocalePicker(final UserDictionaryAddWordFragment parent) { argument
22 setLocaleSelectionListener(parent);
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastCursorAdapter.java42 * @param parent The parent to which the new view is attached to
46 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
51 R.layout.cell_broadcast_list_item, parent, false);
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DShowCallHistoryViewHolder.java41 public static ShowCallHistoryViewHolder create(Context context, ViewGroup parent) { argument
43 View view = inflater.inflate(R.layout.show_call_history_list_item, parent, false);
/packages/apps/Settings/src/com/android/settings/dashboard/
H A DNoHomeDialogFragment.java27 public static void show(Activity parent) { argument
29 dialog.show(parent.getFragmentManager(), null);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DScrollAdapterBase.java43 public abstract View getScrapView(ViewGroup parent); argument
H A DScrollArrayAdapter.java62 public View getScrapView(ViewGroup parent) { argument
64 return getView(0, null, parent);
68 parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
69 return inflater.inflate(mLayoutResource, parent);
71 return new TextView(parent.getContext());
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
H A DAbstractBody.java24 * Abstract <code>Body</code> implementation providing the parent
31 private Entity parent = null; field in class:AbstractBody
37 return parent;
43 public void setParent(Entity parent) { argument
44 this.parent = parent;
H A DBody.java34 * Gets the parent of this body.
36 * @return the parent.
41 * Sets the parent of this body.
43 * @param parent the parent.
45 void setParent(Entity parent); argument
/packages/apps/Calendar/src/com/android/calendar/
H A DEmailAddressAdapter.java44 protected View inflateItemView(ViewGroup parent) { argument
45 return mInflater.inflate(R.layout.email_autocomplete_item, parent, false);
49 protected View inflateItemViewLoading(ViewGroup parent) { argument
50 return mInflater.inflate(R.layout.email_autocomplete_item_loading, parent, false);
/packages/apps/Camera2/src/com/android/camera/async/
H A DLifetime.java31 * Child lifetimes are closed when their parent is closed, or when they are
38 * The parent, or null if there is no parent lifetime.
52 public Lifetime(Lifetime parent) { argument
55 mParent = parent;
57 parent.mCloseables.add(this);
86 // Remove from parent to avoid leaking memory if a long-lasting
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DSingleItemAdapter.java39 public View getView(int position, View convertView, ViewGroup parent) { argument
40 return getView(convertView, parent);
46 protected abstract View getView(View convertView, ViewGroup parent); argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListPinnedHeaderView.java38 public ContactListPinnedHeaderView(Context context, AttributeSet attrs, View parent) { argument
56 setLayoutDirection(parent.getLayoutDirection());
/packages/apps/DeskClock/src/com/android/deskclock/widget/selector/
H A DAlarmSelectionAdapter.java38 public View getView(int position, View convertView, ViewGroup parent) { argument
43 row = inflater.inflate(R.layout.alarm_row, parent, false);
/packages/apps/Email/src/com/android/email/activity/
H A DUiUtilities.java34 public static <T extends View> T getView(View parent, int viewId) { argument
35 return (T) checkView(parent.findViewById(viewId));
57 public static void setVisibilitySafe(View parent, int viewId, int visibility) { argument
58 setVisibilitySafe(parent.findViewById(viewId), visibility);
/packages/apps/Gallery2/src/com/android/photos/adapters/
H A DAlbumSetCursorAdapter.java71 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
73 R.layout.album_set_item, parent, false);
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DGalleryGridAdapter.java58 public View newView(final Context context, final Cursor cursor, final ViewGroup parent) { argument
60 return layoutInflater.inflate(R.layout.gallery_grid_item_view, parent, false);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSuggestionViewFactory.java53 * @param parent The parent that this view will eventually be attached to
56 View getView(SuggestionCursor suggestion, String userQuery, View convertView, ViewGroup parent); argument
/packages/apps/Settings/src/com/android/settings/applications/
H A DLayoutPreference.java57 protected View onCreateView(ViewGroup parent) { argument
H A DSpacePreference.java56 protected View onCreateView(ViewGroup parent) { argument
/packages/apps/Stk/src/com/android/stk/
H A DStkMenuAdapter.java46 public View getView(int position, View convertView, ViewGroup parent) { argument
50 convertView = mInflater.inflate(R.layout.stk_menu_item, parent,
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DParsedNdefRecord.java37 public abstract View getView(Activity activity, LayoutInflater inflater, ViewGroup parent, argument
H A DUnknownRecord.java30 public View getView(Activity activity, LayoutInflater inflater, ViewGroup parent, int offset) { argument
31 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
/packages/apps/UnifiedEmail/src/com/android/mail/drawer/
H A DBlankHeaderDrawerItem.java40 * @param parent the parent of this view
44 public View getView(View convertView, ViewGroup parent) { argument
49 blankHeaderView = mInflater.inflate(R.layout.folder_list_blank_header, parent,
H A DBottomSpaceDrawerItem.java40 * @param parent the parent of this view
44 public View getView(View convertView, ViewGroup parent) { argument
49 blankHeaderView = mInflater.inflate(R.layout.folder_list_bottom_space, parent,
H A DWaitViewDrawerItem.java40 * @param parent the parent hosting this view.
44 public View getView(View convertView, ViewGroup parent) { argument
49 emptyView = (ViewGroup) mInflater.inflate(R.layout.drawer_empty_view, parent, false);

Completed in 890 milliseconds

1234567891011>>