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

12345

/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.java39 public View getView(int position, View convertView, ViewGroup parent) { argument
41 View row = convertView;
/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
H A DSuggestionViewInflater.java63 View convertView, ViewGroup parent) {
64 if (convertView == null || !convertView.getClass().equals(mViewClass)) {
66 convertView = getInflater().inflate(layoutId, parent, false);
68 if (!(convertView instanceof SuggestionView)) {
69 throw new IllegalArgumentException("Not a SuggestionView: " + convertView);
71 ((SuggestionView) convertView).bindAsSuggestion(suggestion, userQuery);
72 return convertView;
62 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/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.java60 public View getView(int position, View convertView, ViewGroup parent) { argument
63 if (convertView == null) {
67 itemView = (ContactListItemView) convertView;
74 return super.getView(position - getHeaderEntryCount(), convertView, parent);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
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/ContactsCommon/src/com/android/contacts/common/util/
H A DAccountsListAdapter.java90 public View getView(int position, View convertView, ViewGroup parent) { argument
91 final View resultView = convertView != null ? convertView :
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateAdapter.java46 public View getView(int position, View convertView, ViewGroup parent) { argument
48 if (convertView == null) {
49 convertView = new StateView(getContext());
51 view = (StateView) convertView;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAddAdapter.java77 public View getView(int position, View convertView, ViewGroup parent) { argument
80 if (convertView == null) {
81 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
84 TextView textView = (TextView) convertView;
89 return convertView;
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DVCardDetailAdapter.java54 final boolean isLastChild, final View convertView, final ViewGroup parent) {
56 if (convertView == null) {
59 v = (PersonItemView) convertView;
91 final View convertView, final ViewGroup parent) {
93 if (convertView == null) {
96 v = (PersonItemView) convertView;
53 getChildView(final int groupPosition, final int childPosition, final boolean isLastChild, final View convertView, final ViewGroup parent) argument
90 getGroupView(final int groupPosition, final boolean isExpanded, final View convertView, final ViewGroup parent) argument
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
H A DSettingsActivity.java132 public View getView(final int position, final View convertView, argument
135 if (convertView != null) {
136 itemView = convertView;
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactDropdownLayouter.java71 public View bindView(final View convertView, final ViewGroup parent, final RecipientEntry entry, argument
81 return super.bindView(convertView, parent, entry, position, type, substring,
94 final View itemView = reuseOrInflateView(convertView, parent, type);
/packages/apps/Messaging/src/com/android/messaging/ui/debug/
H A DDebugMmsConfigFragment.java110 public View getView(final int position, final View convertView, final ViewGroup parent) { argument
112 if (convertView != null && convertView instanceof DebugMmsConfigItemView) {
113 view = (DebugMmsConfigItemView) convertView;

Completed in 1159 milliseconds

12345