Searched defs:convertView (Results 1 - 25 of 135) sorted by relevance

123456

/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/DeskClock/src/com/android/deskclock/widget/selector/
H A DAlarmSelectionAdapter.java43 public @NonNull View getView(int position, @Nullable View convertView, argument
46 View row = convertView;
/packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
H A DAppItem.java63 void bindView(View convertView) { argument
64 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon);
65 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
66 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
68 final PackageManager pm = convertView.getContext().getPackageManager();
H A DSpacerItem.java40 void bindView(View convertView) { argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSuggestionViewFactory.java50 * @param convertView The old view to reuse, if possible. Note: You should check that this view
56 View getView(SuggestionCursor suggestion, String userQuery, View convertView, ViewGroup parent); argument
H A DDefaultSuggestionViewFactory.java65 View convertView, ViewGroup parent) {
68 return factory.getView(suggestion, userQuery, convertView, parent);
71 return mDefaultFactory.getView(suggestion, userQuery, convertView, parent);
64 getView(SuggestionCursor suggestion, String userQuery, View convertView, ViewGroup parent) argument
/packages/apps/Stk/src/com/android/stk/
H A DStkMenuAdapter.java46 public View getView(int position, View convertView, ViewGroup parent) { argument
49 if (convertView == null) {
50 convertView = mInflater.inflate(R.layout.stk_menu_item, parent,
55 ((TextView) convertView.findViewById(R.id.text)).setText(item.text);
57 ImageView imageView = ((ImageView) convertView.findViewById(R.id.icon));
65 return convertView;
/packages/apps/UnifiedEmail/src/com/android/mail/drawer/
H A DBlankHeaderDrawerItem.java39 * @param convertView A previous view, perhaps null
44 public View getView(View convertView, ViewGroup parent) { argument
46 if (convertView != null) {
47 blankHeaderView = convertView;
H A DBottomSpaceDrawerItem.java39 * @param convertView A previous view, perhaps null
44 public View getView(View convertView, ViewGroup parent) { argument
46 if (convertView != null) {
47 blankHeaderView = convertView;
H A DWaitViewDrawerItem.java39 * @param convertView a view, possibly null, to be recycled.
44 public View getView(View convertView, ViewGroup parent) { argument
46 if (convertView != null) {
47 emptyView = (ViewGroup) convertView;
H A DFolderDrawerItem.java44 * @param convertView a view, possibly null, to be recycled.
48 public View getView(View convertView, ViewGroup parent) { argument
50 if (convertView != null) {
51 folderItemView = (FolderItemView) convertView;
H A DHeaderDrawerItem.java43 * @param convertView a previous view, perhaps null
48 public View getView(View convertView, ViewGroup parent) { argument
50 if (convertView != null) {
51 headerView = convertView;
/packages/apps/Car/SystemUpdater/src/com/android/car/systemupdater/
H A DFileAdapter.java41 public View getView(int position, View convertView, ViewGroup parent) { argument
43 if (convertView == null) {
45 convertView = inflater.inflate(mLayoutResourceId, parent, false);
46 vh.textView = (TextView) convertView.findViewById(R.id.text);
47 vh.descriptionView = (TextView) convertView.findViewById(R.id.description);
48 convertView.setTag(vh);
50 vh = (ViewHolder) convertView.getTag();
61 return convertView;
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppViewHolder.java38 static public AppViewHolder createOrRecycle(LayoutInflater inflater, View convertView) { argument
39 if (convertView == null) {
40 convertView = inflater.inflate(R.layout.preference_app, null);
42 (ViewGroup) convertView.findViewById(android.R.id.widget_frame));
47 holder.rootView = convertView;
48 holder.appName = (TextView) convertView.findViewById(android.R.id.title);
49 holder.appIcon = (ImageView) convertView.findViewById(android.R.id.icon);
50 holder.summary = (TextView) convertView.findViewById(R.id.widget_text1);
51 holder.disabled = (TextView) convertView.findViewById(R.id.widget_text2);
52 convertView
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DFromAddressSpinnerAdapter.java57 public View getView(int position, View convertView, ViewGroup parent) { argument
59 final View fromEntry = convertView == null ?
60 getInflater().inflate(R.layout.from_item, null) : convertView;
77 public View getDropDownView(int position, View convertView, ViewGroup parent) { argument
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DHierarchicalFolderSelectorAdapter.java55 public View getView(int position, View convertView, ViewGroup parent) { argument
56 final View view = super.getView(position, convertView, parent);
H A DSeparatedFolderListAdapter.java94 public View getView(int position, View convertView, ViewGroup parent) { argument
98 return adapter.getView(position, convertView, parent);
/packages/experimental/NotificationLog/src/com/android/notificationlog/
H A DNotificationLogActivity.java71 public View getView(int position, View convertView, ViewGroup parent) { argument
73 if (convertView == null) {
76 view = convertView;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DHeaderEntryContactListAdapter.java58 public View getView(int position, View convertView, ViewGroup parent) { argument
61 if (convertView == null) {
65 itemView = (ContactListItemView) convertView;
72 return super.getView(position - getHeaderEntryCount(), convertView, parent);
H A DPinnedHeaderListAdapter.java70 public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) { argument
73 if (convertView != null) {
74 Integer headerType = (Integer)convertView.getTag();
76 view = convertView;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DAccountsListAdapter.java87 public View getView(int position, View convertView, ViewGroup parent) { argument
88 final View resultView = convertView != null ? convertView :
/packages/apps/DeskClock/src/com/android/deskclock/settings/
H A DSimpleMenuPreference.java133 public View getDropDownView(int position, View convertView, @NonNull ViewGroup parent) { argument
134 final View view = super.getDropDownView(position, convertView, parent);
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DPinnedHeaderListAdapter.java61 public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) { argument
64 if (convertView != null) {
65 Integer headerType = (Integer) convertView.getTag();
67 view = convertView;
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
H A DGalleryGridAdapter.java57 public View getView(int position, View convertView, ViewGroup parent) { argument
65 if (convertView == null) {
68 view = convertView;
/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DDropdownBreadcrumb.java119 public View getView(int position, View convertView, ViewGroup parent) { argument
120 if (convertView == null) {
121 convertView = LayoutInflater.from(parent.getContext())
125 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
135 return convertView;
139 public View getDropDownView(int position, View convertView, ViewGroup parent) { argument
140 if (convertView == null) {
141 convertView = LayoutInflater.from(parent.getContext())
145 final TextView title = (TextView) convertView.findViewById(android.R.id.title);
155 return convertView;
[all...]

Completed in 1859 milliseconds

123456