Searched defs:view (Results 201 - 225 of 441) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/animation/
H A DGridLayoutAnimationController.java17 package android.view.animation;
19 import android.view.View;
20 import android.view.ViewGroup;
31 * in the view group to compute the animation delay, this class uses both the
41 * {@link android.view.animation.GridLayoutAnimationController.AnimationParameters},
42 * itself stored in the {@link android.view.ViewGroup.LayoutParams} of the view.
107 * @param context the Context the view group is running in, through which
137 * @param animation the animation to use on each child of the view group
147 * @param animation the animation to use on each child of the view grou
297 getDelayForView(View view) argument
[all...]
H A DRotateAnimation.java17 package android.view.animation;
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java16 package com.android.internal.view;
18 import com.android.internal.view.menu.MenuBuilder;
19 import com.android.internal.view.menu.MenuPopupHelper;
20 import com.android.internal.view.menu.SubMenuBuilder;
24 import android.view.ActionMode;
25 import android.view.Menu;
26 import android.view.MenuInflater;
27 import android.view.MenuItem;
28 import android.view.View;
29 import android.view
43 StandaloneActionMode(Context context, ActionBarContextView view, ActionMode.Callback callback, boolean isFocusable) argument
86 setCustomView(View view) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuPresenter.java17 package com.android.internal.view.menu;
24 import android.view.ContextThemeWrapper;
25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
165 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java17 package android.support.v4.view;
22 import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
23 import android.support.v4.view.accessibility.AccessibilityNodeProviderCompat;
24 import android.view.View;
25 import android.view.accessibility.AccessibilityEvent;
33 * Always allow a user to over-scroll this view, provided it is a
34 * view that can scroll.
39 * Allow a user to over-scroll this view only if the content is large
40 * enough to meaningfully scroll, provided it is a view that can scroll.
45 * Never allow a user to over-scroll this view
123 hasTransientState(View view) argument
124 setHasTransientState(View view, boolean hasTransientState) argument
125 postInvalidateOnAnimation(View view) argument
126 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
127 postOnAnimation(View view, Runnable action) argument
128 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
129 getImportantForAccessibility(View view) argument
130 setImportantForAccessibility(View view, int mode) argument
131 performAccessibilityAction(View view, int action, Bundle arguments) argument
132 getAccessibilityNodeProvider(View view) argument
133 setLayerType(View view, int layerType, Paint paint) argument
134 getLayerType(View view) argument
135 getLabelFor(View view) argument
136 setLabelFor(View view, int id) argument
164 hasTransientState(View view) argument
168 setHasTransientState(View view, boolean hasTransientState) argument
171 postInvalidateOnAnimation(View view) argument
174 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
177 postOnAnimation(View view, Runnable action) argument
180 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
186 getImportantForAccessibility(View view) argument
189 setImportantForAccessibility(View view, int mode) argument
192 performAccessibilityAction(View view, int action, Bundle arguments) argument
195 getAccessibilityNodeProvider(View view) argument
198 setLayerType(View view, int layerType, Paint paint) argument
200 getLayerType(View view) argument
203 getLabelFor(View view) argument
206 setLabelFor(View view, int id) argument
226 setLayerType(View view, int layerType, Paint paint) argument
229 getLayerType(View view) argument
263 hasTransientState(View view) argument
267 setHasTransientState(View view, boolean hasTransientState) argument
271 postInvalidateOnAnimation(View view) argument
275 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
279 postOnAnimation(View view, Runnable action) argument
283 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
287 getImportantForAccessibility(View view) argument
291 setImportantForAccessibility(View view, int mode) argument
295 performAccessibilityAction(View view, int action, Bundle arguments) argument
299 getAccessibilityNodeProvider(View view) argument
311 getLabelFor(View view) argument
316 setLabelFor(View view, int id) argument
519 hasTransientState(View view) argument
530 setHasTransientState(View view, boolean hasTransientState) argument
543 postInvalidateOnAnimation(View view) argument
560 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
575 postOnAnimation(View view, Runnable action) argument
592 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
608 getImportantForAccessibility(View view) argument
624 setImportantForAccessibility(View view, int mode) argument
642 performAccessibilityAction(View view, int action, Bundle arguments) argument
669 getAccessibilityNodeProvider(View view) argument
712 setLayerType(View view, int layerType, Paint paint) argument
732 getLayerType(View view) argument
743 getLabelFor(View view) argument
754 setLabelFor(View view, int labeledId) argument
[all...]
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java24 import android.view.LayoutInflater;
25 import android.view.View;
58 * @param view The view associated with this listener.
64 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth); argument
108 View view = inflater.inflate(R.layout.date_picker_dialog, null);
109 setView(view);
110 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
119 public void onDateChanged(DatePicker view, int year, argument
128 * @return The calendar view
[all...]
H A DListFragment.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.view.animation.AnimationUtils;
42 * ListFragment has a default layout that consists of a single list view.
44 * your own view hierarchy from {@link #onCreateView}.
45 * To do this, your view hierarchy <em>must</em> contain a ListView object with the
48 * Optionally, your view hierarchy can contain another view object of any type to
49 * display when the list view i
201 onViewCreated(View view, Bundle savedInstanceState) argument
[all...]
H A DTimePickerDialog.java25 import android.view.LayoutInflater;
26 import android.view.View;
46 * @param view The view associated with this listener.
50 void onTimeSet(TimePicker view, int hourOfDay, int minute); argument
69 * @param is24HourView Whether this is a 24 hour view, or AM/PM.
83 * @param is24HourView Whether this is a 24 hour view, or AM/PM.
103 View view = inflater.inflate(R.layout.time_picker_dialog, null);
104 setView(view);
105 mTimePicker = (TimePicker) view
123 onTimeChanged(TimePicker view, int hourOfDay, int minute) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java19 import com.android.internal.view.menu.MenuBuilder;
20 import com.android.internal.view.menu.MenuPopupHelper;
24 import android.view.ActionMode;
25 import android.view.Menu;
26 import android.view.MenuInflater;
27 import android.view.MenuItem;
28 import android.view.View;
29 import android.view.accessibility.AccessibilityEvent;
133 public void setCustomView(View view) { argument
134 // Custom view i
[all...]
/frameworks/base/core/java/android/preference/
H A DEditTextPreference.java27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.ViewParent;
62 * The preference framework and view framework both have an 'enabled'
64 * the preference framework, but it was also given to the view framework.
106 protected void onBindDialogView(View view) { argument
107 super.onBindDialogView(view);
113 if (oldParent != view) {
117 onAddEditTextToDialogView(view, editText);
122 * Adds the EditText widget of this preference to the dialog's view
[all...]
H A DPreferenceScreen.java27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.Window;
141 * @param listView The list view to attach to.
200 * as we would with any other activity or view.
206 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/text/
H A DAutoText.java24 import android.view.View;
84 * @param view to get the resources from
87 private static AutoText getInstance(View view) { argument
88 Resources res = view.getContext().getResources();
110 View view) {
111 return getInstance(view).lookup(src, start, end);
117 * @param view used to retrieve the current Locale and Resources.
120 public static int getSize(View view) { argument
122 return getInstance(view).getSize();
109 get(CharSequence src, final int start, final int end, View view) argument
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java23 import android.view.KeyEvent;
24 import android.view.MotionEvent;
25 import android.view.View;
43 // This calculation does not take into account the view transformations that
247 // mode once the view detected it needed to scroll.
306 public void onTakeFocus(TextView view, Spannable text, int dir) { argument
308 if (view.getLayout() == null) {
H A DCharacterPickerDialog.java25 import android.view.LayoutInflater;
26 import android.view.View.OnClickListener;
27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.Window;
30 import android.view.WindowManager;
54 public CharacterPickerDialog(Context context, View view, argument
59 mView = view;
88 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
H A DMultiTapKeyListener.java19 import android.view.KeyEvent;
20 import android.view.View;
85 public boolean onKeyDown(View view, Editable content, argument
90 if (view != null) {
91 pref = TextKeyListener.getInstance().getPrefs(view.getContext());
231 return super.onKeyDown(view, content, keyCode, event);
H A DQwertyKeyListener.java22 import android.view.KeyCharacterMap;
23 import android.view.KeyEvent;
24 import android.view.View;
84 public boolean onKeyDown(View view, Editable content, argument
89 if (view != null) {
90 pref = TextKeyListener.getInstance().getPrefs(view.getContext());
118 if (c == i || c == Character.toUpperCase(i) && view != null) {
119 if (showCharacterPicker(view, content, c, false, count)) {
128 if (view != null) {
129 showCharacterPicker(view, conten
359 getReplacement(CharSequence src, int start, int end, View view) argument
495 showCharacterPicker(View view, Editable content, char c, boolean insert, int count) argument
[all...]
H A DReplacementTransformationMethod.java26 import android.view.View;
102 public void onFocusChanged(View view, CharSequence sourceText, argument
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java17 package android.view;
31 * Note: Such iterators are needed in the view package since we want
32 * to be able to iterator over content description of any view.
H A DHardwareLayer.java17 package android.view;
H A DInputChannel.java17 package android.view;
H A DInputEventReceiver.java17 package android.view;
H A DOrientationEventListener.java17 package android.view;
H A DSurfaceHolder.java17 package android.view;
233 * @see android.view.SurfaceHolder#lockCanvas
265 * Surface is not created until the view has been attached to the window
H A DViewStub.java17 package android.view;
35 * Therefore, the ViewStub exists in the view hierarchy until {@link #setVisibility(int)} or
123 * Returns the id taken by the inflated view. If the inflated id is
124 * {@link View#NO_ID}, the inflated view keeps its original id.
126 * @return A positive integer used to identify the inflated view or
127 * {@link #NO_ID} if the inflated view should keep its id.
137 * Defines the id taken by the inflated view. If the inflated id is
138 * {@link View#NO_ID}, the inflated view keeps its original id.
140 * @param inflatedId A positive integer used to identify the inflated view or
141 * {@link #NO_ID} if the inflated view shoul
[all...]
H A DWindowInfo.java17 package android.view;

Completed in 243 milliseconds

1234567891011>>