Searched refs:view (Results 201 - 225 of 2655) sorted by relevance

1234567891011>>

/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DAudioMediaChooser.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
71 final AudioRecordView view = (AudioRecordView) inflater.inflate(
75 view.setHostInterface(this);
76 view.setThemeColor(mMediaPicker.getConversationThemeColor());
77 mEnabledView = view.findViewById(R.id.mediapicker_enabled);
78 mMissingPermissionView = view.findViewById(R.id.missing_permission_view);
79 return view;
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/diagnostic/
H A DDiagnosticTestFragment.java29 import android.view.LayoutInflater;
30 import android.view.View;
31 import android.view.ViewGroup;
49 TestListener(TextView view) { argument
50 mTextView = Objects.requireNonNull(view);
68 View view = inflater.inflate(R.layout.diagnostic, container, false);
71 mLiveDiagnosticInfo = (TextView) view.findViewById(R.id.live_diagnostic_info);
75 mFreezeDiagnosticInfo = (TextView) view.findViewById(R.id.freeze_diagnostic_info);
79 return view;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastCursorAdapter.java22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
38 * Makes a new view to hold the data pointed to by cursor.
42 * @param parent The parent to which the new view is attached to
43 * @return the newly created view.
58 * Bind an existing view to the data pointed to by cursor
59 * @param view Existing view, returned earlier by newView
65 public void bindView(View view, Contex argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DMultiSelectEmailAddressesListAdapter.java28 import android.view.View;
29 import android.view.ViewGroup;
137 final ContactListItemView view = super.newView(context, partition, cursor, position, parent);
138 view.setUnknownNameText(mUnknownNameText);
139 view.setQuickContactEnabled(isQuickContactEnabled());
140 return view;
146 final ContactListItemView view = (ContactListItemView)itemView;
159 bindViewId(view, cursor, EmailQuery.EMAIL_ID);
161 bindName(view, cursor);
162 bindPhoto(view, curso
171 unbindName(final ContactListItemView view) argument
175 bindEmailAddress(ContactListItemView view, Cursor cursor) argument
188 bindName(final ContactListItemView view, Cursor cursor) argument
[all...]
H A DMultiSelectPhoneNumbersListAdapter.java28 import android.view.View;
29 import android.view.ViewGroup;
137 final ContactListItemView view = super.newView(context, partition, cursor, position, parent);
138 view.setUnknownNameText(mUnknownNameText);
139 view.setQuickContactEnabled(isQuickContactEnabled());
140 return view;
146 final ContactListItemView view = (ContactListItemView)itemView;
159 bindViewId(view, cursor, PhoneQuery.PHONE_ID);
161 bindName(view, cursor);
162 bindPhoto(view, curso
171 unbindName(final ContactListItemView view) argument
175 bindPhoneNumber(ContactListItemView view, Cursor cursor) argument
188 bindName(final ContactListItemView view, Cursor cursor) argument
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/ringtone/
H A DAddCustomRingtoneViewHolder.java19 import android.view.LayoutInflater;
20 import android.view.View;
21 import android.view.ViewGroup;
28 import static android.view.View.GONE;
53 public void onClick(View view) { argument
H A DHeaderViewHolder.java19 import android.view.LayoutInflater;
20 import android.view.View;
21 import android.view.ViewGroup;
/packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
H A DViewNumbersToImportAdapter.java21 import android.view.View;
48 public void bindView(View view, Context context, Cursor cursor) { argument
49 super.bindView(view, context, cursor);
53 view.findViewById(R.id.delete_button).setVisibility(View.GONE);
54 updateView(view, number, null /* countryIso */);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DStylusEventHelper.java3 import android.view.MotionEvent;
4 import android.view.View;
5 import android.view.ViewConfiguration;
8 * Helper for identifying when a stylus touches a view while the primary stylus button is pressed.
46 * @param view Optional view associated with the touch events.
48 public StylusEventHelper(StylusButtonListener listener, View view) { argument
50 mView = view;
/packages/apps/Launcher3/src/com/android/launcher3/views/
H A DButtonPreference.java21 import android.view.View;
22 import android.view.ViewGroup;
57 protected void onBindView(View view) { argument
58 super.onBindView(view);
60 ViewGroup widgetFrame = view.findViewById(android.R.id.widget_frame);
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DRestrictedSwitchPreference.java21 import android.view.View;
42 public void onBindView(View view) { argument
43 super.onBindView(view);
45 view.setEnabled(true);
48 final TextView summaryView = (TextView) view.findViewById(android.R.id.summary);
/packages/apps/Settings/src/com/android/settings/
H A DCancellablePreference.java22 import android.view.View;
23 import android.view.View.OnClickListener;
51 public void onBindViewHolder(PreferenceViewHolder view) { argument
52 super.onBindViewHolder(view);
54 ImageView cancel = (ImageView) view.findViewById(R.id.cancel);
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DStorageSummaryPreference.java24 import android.view.View;
46 public void onBindViewHolder(PreferenceViewHolder view) { argument
47 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress);
56 final TextView summary = (TextView) view.findViewById(android.R.id.summary);
59 super.onBindViewHolder(view);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DLongPressAccessPointPreference.java43 public void onBindViewHolder(final PreferenceViewHolder view) { argument
44 super.onBindViewHolder(view);
46 view.itemView.setOnCreateContextMenuListener(mFragment);
47 view.itemView.setTag(this);
48 view.itemView.setLongClickable(true);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DRestrictedActivity.java29 import android.support.v7.view.ActionMode;
30 import android.view.MenuInflater;
31 import android.view.MenuItem;
32 import android.view.View;
33 import android.view.Window;
/packages/experimental/FilledApp/src/foo/bar/filled/
H A DMainActivity.java22 import android.view.View;
23 import android.view.autofill.AutofillManager;
44 finishButton.setOnClickListener((view) -> finish());
49 public void onAutofillEvent(@NonNull View view, int event) {
50 super.onAutofillEvent(view, event);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DRadioButtonPreference.java22 import android.view.View;
75 protected void onBindView(final View view) { argument
76 super.onBindView(view);
77 mRadioButton = (RadioButton)view.findViewById(R.id.radio_button);
80 view.setOnClickListener(mClickListener);
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/orientation/
H A DOrientationTestFragment.java23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
38 public void onClick(View view) {
46 public void onClick(View view) {
/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DFocusManager.java39 import android.view.KeyEvent;
40 import android.view.View;
132 if (hasFocus && v.getParent() == mScope.view) {
133 mScope.lastFocusPosition = mScope.view.getChildAdapterPosition(v);
179 mScope.view.clearFocus();
190 if (pos != -1 && mScope.view.findViewHolderForAdapterPosition(pos) != null) {
210 DocumentHolder holder = (DocumentHolder) mScope.view
220 * @param view The view that received the event.
225 private int findTargetPosition(View view, in argument
304 findPagedTargetPosition(View view, int keyCode, KeyEvent event) argument
401 onFocus(View view) argument
609 applyHighlight(View view) argument
640 reset(RecyclerView view, Model model) argument
655 private @Nullable RecyclerView view; field in class:FocusManager.ContentScope
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupMembersAdapter.java27 import android.view.View;
28 import android.view.ViewGroup;
140 final ContactListItemView view =
142 view.setUnknownNameText(mUnknownNameText);
143 return view;
149 final ContactListItemView view = (ContactListItemView) v;
150 bindSectionHeaderAndDivider(view, position);
151 bindName(view, cursor);
152 bindPhoto(view, cursor, GroupMembersQuery.CONTACT_PHOTO_ID,
154 bindDeleteButton(view, positio
157 bindSectionHeaderAndDivider(ContactListItemView view, int position) argument
167 bindName(ContactListItemView view, Cursor cursor) argument
172 bindDeleteButton(final ContactListItemView view, int position) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
H A DVoicemailErrorAlert.java22 import android.view.View;
41 private final View view; field in class:VoicemailErrorAlert
61 view = alertManager.inflate(R.layout.voicemail_error_message_fragment);
62 header = (TextView) view.findViewById(R.id.error_card_header);
63 details = (TextView) view.findViewById(R.id.error_card_details);
64 primaryAction = (TextView) view.findViewById(R.id.primary_action);
65 secondaryAction = (TextView) view.findViewById(R.id.secondary_action);
66 primaryActionRaised = (TextView) view.findViewById(R.id.primary_action_raised);
67 secondaryActionRaised = (TextView) view.findViewById(R.id.secondary_action_raised);
73 view
[all...]
/packages/apps/Car/Dialer/src/com/android/car/dialer/
H A DCallLogViewHolder.java18 import android.view.View;
19 import android.view.ViewGroup;
22 import com.android.car.view.CarListItemViewHolder;
/packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/
H A DSettingsMenuItemController.java21 import android.view.Menu;
22 import android.view.MenuItem;
27 import static android.view.Menu.NONE;
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DPopupManager.java20 import android.view.View;
41 public void notifyShowPopup(View view) { argument
43 if ((View) listener != view) {
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
H A DViewTest.java19 import android.view.View;
23 * Base class for view tests. Derived class just has to provide a layout id. Tests can then just
24 * call getView() to get a created view and test its behavior.
55 protected void clickButton(final View view) { argument
59 view.performClick();

Completed in 7233 milliseconds

1234567891011>>