Searched refs:view (Results 101 - 125 of 3459) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/
H A DViewGroupOverlay.java16 package android.view;
24 * (the "host view") which is drawn after all other content in that view
25 * (including the view group's children). Interaction with the overlay
41 * Adds a {@code View} to the overlay. The bounds of the added view should be
42 * relative to the host view. Any view added to the overlay should be
50 * <p>If the view has a parent, the view will be removed from that parent
52 * in the current view hierarch
71 add(@onNull View view) argument
83 remove(@onNull View view) argument
[all...]
H A DIApplicationToken.aidl1 /* //device/java/android/android/view/IApplicationToken.aidl
18 package android.view;
H A DIWindowFocusObserver.aidl16 package android.view;
H A DSearchEvent.java17 package android.view;
19 import android.view.InputDevice;
/frameworks/support/compat/honeycomb/android/support/v4/view/
H A DMenuItemCompatHoneycomb.java17 package android.support.v4.view;
19 import android.view.MenuItem;
20 import android.view.View;
30 public static MenuItem setActionView(MenuItem item, View view) { argument
31 return item.setActionView(view);
H A DViewGroupCompatHC.java18 package android.support.v4.view;
20 import android.view.ViewGroup;
/frameworks/support/compat/kitkat/android/support/v4/view/
H A DViewPropertyAnimatorCompatKK.java16 package android.support.v4.view;
19 import android.view.View;
23 public static void setUpdateListener(final View view, argument
30 listener.onAnimationUpdate(view);
34 view.animate().setUpdateListener(wrapped);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DForegroundHelper.java5 import android.view.View;
6 import android.view.ViewGroup;
18 public void setForeground(View view, Drawable drawable); argument
20 public Drawable getForeground(View view); argument
31 public void setForeground(View view, Drawable drawable) { argument
32 ForegroundHelperApi23.setForeground(view, drawable);
36 public Drawable getForeground(View view) { argument
37 return ForegroundHelperApi23.getForeground(view);
49 public void setForeground(View view, Drawable drawable) { argument
53 public Drawable getForeground(View view) { argument
77 getForeground(View view) argument
81 setForeground(View view, Drawable drawable) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DKeyListener.java20 import android.view.KeyEvent;
21 import android.view.View;
27 * {@link android.view.inputmethod.InputMethod}; it should only be used
63 public boolean onKeyDown(View view, Editable text, argument
71 public boolean onKeyUp(View view, Editable text, argument
79 public boolean onKeyOther(View view, Editable text, KeyEvent event); argument
84 public void clearMetaKeyState(View view, Editable content, int states); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DViewState.java19 import android.view.View;
22 * A state of a view. This can be used to apply a set of view properties to a view with
42 public void initFrom(View view) { argument
43 alpha = view.getAlpha();
44 yTranslation = view.getTranslationY();
45 zTranslation = view.getTranslationZ();
46 gone = view.getVisibility() == View.GONE;
/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild.java18 package android.support.v4.view;
20 import android.view.MotionEvent;
21 import android.view.VelocityTracker;
22 import android.view.View;
23 import android.view.ViewConfiguration;
24 import android.view.ViewParent;
27 * This interface should be implemented by {@link android.view.View View} subclasses that wish
29 * {@link android.view.ViewGroup ViewGroup}.
42 * Enable or disable nested scrolling for this view.
44 * <p>If this property is set to true the view wil
[all...]
H A DMenuCompat.java17 package android.support.v4.view;
19 import android.view.MenuItem;
22 * Helper for accessing features in {@link android.view.Menu}
/frameworks/support/transition/ics/android/support/transition/
H A DViewGroupOverlay.java21 import android.view.View;
22 import android.view.ViewGroup;
35 * Adds a View to the overlay. The bounds of the added view should be
36 * relative to the host view. Any view added to the overlay should be
44 * <p>If the view has a parent, the view will be removed from that parent
46 * in the current view hierarchy, the view will be repositioned
48 * example, if the view'
57 add(View view) argument
68 remove(View view) argument
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTextViewBindingAdapter.java63 public static void setText(TextView view, CharSequence text) { argument
64 final CharSequence oldText = view.getText();
75 view.setText(text);
79 public static String getTextString(TextView view) { argument
80 return view.getText().toString();
84 public static void setAutoText(TextView view, boolean autoText) { argument
85 KeyListener listener = view.getKeyListener();
97 view.setKeyListener(TextKeyListener.getInstance(autoText, capitalize));
101 public static void setCapitalize(TextView view, TextKeyListener.Capitalize capitalize) { argument
102 KeyListener listener = view
110 setBufferType(TextView view, TextView.BufferType bufferType) argument
115 setDigits(TextView view, CharSequence digits) argument
124 setNumeric(TextView view, int numeric) argument
130 setPhoneNumber(TextView view, boolean phoneNumber) argument
145 setDrawableBottom(TextView view, Drawable drawable) argument
152 setDrawableLeft(TextView view, Drawable drawable) argument
159 setDrawableRight(TextView view, Drawable drawable) argument
167 setDrawableTop(TextView view, Drawable drawable) argument
175 setDrawableStart(TextView view, Drawable drawable) argument
186 setDrawableEnd(TextView view, Drawable drawable) argument
197 setImeActionLabel(TextView view, CharSequence value) argument
202 setImeActionLabel(TextView view, int value) argument
207 setInputMethod(TextView view, CharSequence inputMethod) argument
221 setLineSpacingExtra(TextView view, float value) argument
230 setLineSpacingMultiplier(TextView view, float value) argument
239 setMaxLength(TextView view, int value) argument
273 setPassword(TextView view, boolean password) argument
282 setShadowColor(TextView view, int color) argument
292 setShadowDx(TextView view, float dx) argument
302 setShadowDy(TextView view, float dy) argument
312 setShadowRadius(TextView view, float r) argument
322 setTextSize(TextView view, float size) argument
346 setTextWatcher(TextView view, final BeforeTextChanged before, final OnTextChanged on, final AfterTextChanged after, final InverseBindingListener textAttrChanged) argument
[all...]
H A DTabHostBindingAdapter.java27 public static int getCurrentTab(TabHost view) { argument
28 return view.getCurrentTab();
32 public static String getCurrentTabTag(TabHost view) { argument
33 return view.getCurrentTabTag();
37 public static void setCurrentTab(TabHost view, int tab) { argument
38 if (view.getCurrentTab() != tab) {
39 view.setCurrentTab(tab);
44 public static void setCurrentTabTag(TabHost view, String tabTag) { argument
45 if (view.getCurrentTabTag() != tabTag) {
46 view
52 setListeners(TabHost view, final OnTabChangeListener listener, final InverseBindingListener attrChange) argument
[all...]
H A DViewBindingAdapter.java26 import android.view.View;
27 import android.view.View.OnAttachStateChangeListener;
64 public static void setPadding(View view, float paddingFloat) { argument
66 view.setPadding(padding, padding, padding, padding);
70 public static void setPaddingBottom(View view, float paddingFloat) { argument
72 view.setPadding(view.getPaddingLeft(), view.getPaddingTop(), view.getPaddingRight(),
77 public static void setPaddingEnd(View view, floa argument
89 setPaddingLeft(View view, float paddingFloat) argument
96 setPaddingRight(View view, float paddingFloat) argument
103 setPaddingStart(View view, float paddingFloat) argument
115 setPaddingTop(View view, float paddingFloat) argument
122 setRequiresFadingEdge(View view, int value) argument
130 setClickListener(View view, View.OnClickListener clickListener, boolean clickable) argument
137 setOnClick(View view, View.OnClickListener clickListener, boolean clickable) argument
144 setOnLongClickListener(View view, View.OnLongClickListener clickListener, boolean clickable) argument
151 setOnLongClick(View view, View.OnLongClickListener clickListener, boolean clickable) argument
159 setOnAttachStateChangeListener(View view, final OnViewDetachedFromWindow detach, final OnViewAttachedToWindow attach) argument
194 setOnLayoutChangeListener(View view, View.OnLayoutChangeListener oldValue, View.OnLayoutChangeListener newValue) argument
208 setBackground(View view, Drawable drawable) argument
[all...]
H A DCalendarViewBindingAdapter.java30 public static void setDate(CalendarView view, long date) { argument
31 if (view.getDate() != date) {
32 view.setDate(date);
38 public static void setListeners(CalendarView view, final OnDateChangeListener onDayChange, argument
41 view.setOnDateChangeListener(onDayChange);
43 view.setOnDateChangeListener(new OnDateChangeListener() {
45 public void onSelectedDayChange(CalendarView view, int year, int month,
48 onDayChange.onSelectedDayChange(view, year, month, dayOfMonth);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DGenericAdapter.java30 public static <T> void setListText(TextView view, List<T> list) { argument
31 setText(view, list);
35 public static <T> void setCollectionText(TextView view, Collection<T> list) { argument
36 setText(view, list);
40 public static <T> void setArrayText(TextView view, T[] values) { argument
41 setText(view, Arrays.asList(values));
45 public static <T> void setListAndArray(TextView view, List<T> list, T[] values) { argument
46 setText(view, list);
50 public static <T> void setGenericViewValue(GenericView<T> view, List<T> value) { argument
51 view
55 setGenericListAndArray(GenericView<T> view, List<T> list, T[] values) argument
60 setGenericList(TextView view, List<String> list) argument
65 setGenericIntegerList(TextView view, List<Integer> list) argument
68 setText(TextView view, Collection<T> collection) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DUtil.java5 import android.support.v4.view.accessibility.AccessibilityEventCompat;
6 import android.support.v4.view.accessibility.AccessibilityRecordCompat;
7 import android.view.View;
8 import android.view.accessibility.AccessibilityEvent;
9 import android.view.accessibility.AccessibilityManager;
22 * {@link android.view.View#announceForAccessibility}
23 * @param view The view that triggered the announcement
29 final View view, AccessibilityManager accessibilityManager,
33 view
28 announceForAccessibility( final View view, AccessibilityManager accessibilityManager, final CharSequence text) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java22 import android.view.InputEvent;
23 import android.view.KeyEvent;
24 import android.view.ViewRootImpl;
37 * @param view The WebView that is initiating the callback.
45 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
67 * @param view The WebView that is initiating the callback.
72 public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) { argument
73 return shouldOverrideUrlLoading(view, request.getUrl().toString());
85 * @param view The WebView that is initiating the callback.
90 public void onPageStarted(WebView view, Strin argument
102 onPageFinished(WebView view, String url) argument
112 onLoadResource(WebView view, String url) argument
142 onPageCommitVisible(WebView view, String url) argument
163 shouldInterceptRequest(WebView view, String url) argument
183 shouldInterceptRequest(WebView view, WebResourceRequest request) argument
201 onTooManyRedirects(WebView view, Message cancelMsg, Message continueMsg) argument
250 onReceivedError(WebView view, int errorCode, String description, String failingUrl) argument
263 onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) argument
281 onReceivedHttpError( WebView view, WebResourceRequest request, WebResourceResponse errorResponse) argument
294 onFormResubmission(WebView view, Message dontResend, Message resend) argument
306 doUpdateVisitedHistory(WebView view, String url, boolean isReload) argument
322 onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) argument
360 onReceivedClientCertRequest(WebView view, ClientCertRequest request) argument
376 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
393 shouldOverrideKeyEvent(WebView view, KeyEvent event) argument
407 onUnhandledKeyEvent(WebView view, KeyEvent event) argument
430 onUnhandledInputEvent(WebView view, InputEvent event) argument
438 onUnhandledInputEventInternal(WebView view, InputEvent event) argument
453 onScaleChanged(WebView view, float oldScale, float newScale) argument
466 onReceivedLoginRequest(WebView view, String realm, String account, String args) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DHeterogeneousExpandableList.java19 import android.view.View;
20 import android.view.ViewGroup;
24 * {@link ExpandableListAdapter} take advantage of the {@link Adapter} view type
27 * An {@link ExpandableListAdapter} declares it has one view type for its group items
28 * and one view type for its child items. Although adapted for most {@link ExpandableListView}s,
H A DSpinnerAdapter.java19 import android.view.View;
20 import android.view.ViewGroup;
31 * Gets a {@link android.view.View} that displays in the drop down popup
34 * @param position index of the item whose view we want.
35 * @param convertView the old view to reuse, if possible. Note: You should
36 * check that this view is non-null and of an appropriate type before
37 * using. If it is not possible to convert this view to display the
38 * correct data, this method can create a new view.
39 * @param parent the parent that this view will eventually be attached to
40 * @return a {@link android.view
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DMultiAdapterSetterObj.java16 import android.view.View;
22 public void onClick(View view) {
/frameworks/support/compat/jellybean-mr2/android/support/v4/view/
H A DViewGroupCompatJellybeanMR2.java18 package android.support.v4.view;
20 import android.view.ViewGroup;
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DLayoutInflaterFactoryTestActivity.java19 import android.view.View;
25 public void declarativeOnClick(View view) { argument

Completed in 3793 milliseconds

1234567891011>>