Searched refs:view (Results 51 - 75 of 2655) sorted by relevance

1234567891011>>

/packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
H A DCarInfoFragment.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
H A DMusicFragment.java20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
H A DPhoneFragment.java20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
/packages/apps/Calendar/src/com/android/calendar/
H A DDayFragment.java26 import android.view.LayoutInflater;
27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.ViewGroup.LayoutParams;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
41 * The view id used for all the views we create. It's OK to have all child
42 * views have the same ID. This ID is used to pick which view receives
43 * focus when a view hierarchy is saved / restore
115 DayView view
[all...]
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/simulator/
H A DSessionViewHolder.java21 import android.view.View;
29 SessionViewHolder(View view) { argument
30 super(view);
31 sessionStringView = view.findViewById(R.id.session_string);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DPolicyListPreference.java22 import android.view.View;
41 protected void onBindView(View view) { argument
42 super.onBindView(view);
43 ((TextView)view.findViewById(android.R.id.summary)).setMaxLines(MAX_POLICIES);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPickerActivity.java20 import android.view.Menu;
21 import android.view.MenuInflater;
22 import android.view.MenuItem;
23 import android.view.View;
24 import android.view.View.OnClickListener;
25 import android.view.Window;
53 View view = findViewById(R.id.cancel);
54 view.setOnClickListener(this);
55 view.setVisibility(View.VISIBLE);
57 // We need this, otherwise the view wil
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DTouchController.java19 import android.view.MotionEvent;
/packages/apps/Settings/src/com/android/settings/applications/
H A DAccessibilityManagerWrapperImpl.java19 import android.view.accessibility.AccessibilityManager;
22 * This class replicates a subset of the {@link android.view.accessibility.AccessibilityManager}.
H A DAutofillManagerWrapper.java19 import android.view.autofill.AutofillManager;
22 * This interface replicates a subset of the android.view.autofill.AutofillManager (AFM). The
/packages/apps/Settings/src/com/android/settings/search/
H A DSavedQueryViewHolder.java20 import android.view.View;
29 public SavedQueryViewHolder(View view) { argument
30 super(view);
31 titleView = view.findViewById(android.R.id.title);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
H A DDaydreamVoiceAction.java22 import android.view.View;
37 View view = new View(this);
38 view.setBackgroundColor(Color.BLACK);
39 setContentView(view);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DViewsStateBundle.java22 import android.view.View;
25 * Maintains a bundle of states for a group of views. Each view must have a unique id to identify
29 * Why we "invent" another set of strategies beyond the default android view hierarchy saving
30 * mechanism? Because android strategy for saving view states has two limitations: all indirect
31 * descendant views must have a unique view id or their content will be messed together; no way of
33 * will inevitably have two descendant views with same view id, we also need save the views when
108 * Load view from states, it's none operation if the there is no state associated with the id.
110 * @param view view where loads into
111 * @param id unique id for the view withi
113 loadView(View view, int id) argument
127 saveViewUnchecked(View view, int id) argument
140 saveVisibleView(View view, int id) argument
167 saveInvisibleView(View view, int id) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DAttachmentDeletionInterface.java4 import android.view.View.OnClickListener;
8 * attachments so that the larger attachments view can set
14 * Sets the onClickListener for the close button on the attachment view.
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DKeyboardNavigationController.java20 import android.view.KeyEvent;
29 * the conversation view.
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DHardwareEventDecoder.java19 import android.view.KeyEvent;
/packages/services/Telephony/src/com/android/phone/
H A DAdvancedOptionsPreference.java21 import android.view.View;
34 protected void onBindView(View view) { argument
35 super.onBindView(view);
39 TextView summary = view.findViewById(android.R.id.summary);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAnimatorUtils.java30 import android.support.v4.view.animation.FastOutSlowInInterpolator;
32 import android.view.View;
33 import android.view.animation.Interpolator;
54 public Integer get(View view) {
55 Drawable background = view.getBackground();
64 public void set(View view, Integer value) {
65 setBackgroundAlpha(view, value);
74 * @param view the affected view
77 public static void setBackgroundAlpha(View view, Intege argument
171 getScaleAnimator(View view, float... values) argument
177 getAlphaAnimator(View view, float... values) argument
270 getBoundsAnimator(View view, int fromLeft, int fromTop, int fromRight, int fromBottom, int toLeft, int toTop, int toRight, int toBottom) argument
284 startDrawableAnimation(ImageView view) argument
[all...]
/packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/
H A DContactListItemViewTest.java21 import android.view.View;
49 final ContactListItemView view) {
50 Mockito.verify(mockHost).onContactListItemClicked(data, view);
54 final ContactListItemView view,
59 final TextView contactNameView = (TextView) view.findViewById(R.id.contact_name);
60 final TextView contactDetailView = (TextView) view.findViewById(R.id.contact_details);
61 final ContactIconView avatarView = (ContactIconView) view.findViewById(R.id.contact_icon);
78 final ContactListItemView view = getView();
82 view.bind(cursor, mockHost, false, null);
83 verifyContent(view, (Strin
48 verifyAddedContactForData(final ContactListItemData data, final ContactListItemView view) argument
53 verifyContent( final ContactListItemView view, final String contactName, final String contactDetail, final String avatarUrl, final boolean showAvatar) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DLegacyPhoneNumberListAdapter.java26 import android.view.View;
27 import android.view.ViewGroup;
79 final ContactListItemView view =
81 view.setUnknownNameText(mUnknownNameText);
82 return view;
88 ContactListItemView view = (ContactListItemView)itemView;
89 bindName(view, cursor);
90 bindViewId(view, cursor, PHONE_ID_COLUMN_INDEX);
91 bindPhoneNumber(view, cursor);
94 protected void bindName(final ContactListItemView view, Curso argument
99 bindPhoneNumber(ContactListItemView view, Cursor cursor) argument
[all...]
H A DLegacyPostalAddressListAdapter.java26 import android.view.View;
27 import android.view.ViewGroup;
80 final ContactListItemView view = new ContactListItemView(context, null);
81 view.setUnknownNameText(mUnknownNameText);
82 return view;
88 ContactListItemView view = (ContactListItemView)itemView;
89 bindName(view, cursor);
90 bindViewId(view, cursor, POSTAL_ID_COLUMN_INDEX);
91 bindPostalAddress(view, cursor);
94 protected void bindName(final ContactListItemView view, Curso argument
100 bindPostalAddress(ContactListItemView view, Cursor cursor) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DCursorFactoryListAdapter.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
35 public void bindView(View view, Context context, Cursor cursor); argument
39 * A simple view factory that inflates the views from XML and puts the display
55 public void bindView(View view, Context context, Cursor cursor) { argument
56 TextView name = (TextView) view.findViewById(R.id.name);
68 View view = mViewFactory.newView(context, parent);
69 mViewFactory.bindView(view, context, cursor);
70 return view;
74 bindView(View view, Context context, Cursor cursor) argument
[all...]
/packages/experimental/FilledApp/src/foo/bar/filled/
H A DCustomLinearLayout.java10 import android.view.View;
11 import android.view.ViewGroup;
12 import android.view.ViewStructure;
13 import android.view.autofill.AutofillManager;
14 import android.view.autofill.AutofillValue;
66 View view = findViewByAccessibilityIdTraversal(virtualId);
67 if (view instanceof EditText && !TextUtils.isEmpty(value.getTextValue())) {
68 EditText editText = (EditText) view;
75 private void onProvideAutofillVirtualStructureRecursive(View view, ViewStructure node) { argument
79 if (view instanceo
93 populateViewStructure(View view, ViewStructure structure) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
H A DGalleryGridAdapter.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.View.OnClickListener;
27 import android.view.ViewGroup;
64 View view;
66 view = newView(context, getCursor(), parent);
68 view = convertView;
70 bindView(view, context, getCursor(), position);
71 return view;
74 private void bindView(View view, Contex argument
84 bindView(View view, Context context, Cursor cursor) argument
[all...]
/packages/apps/Calendar/extensions_src/com/android/calendar/extensions/
H A DAllInOneMenuExtensions.java20 import android.view.Menu;
21 import android.view.MenuItem;

Completed in 789 milliseconds

1234567891011>>