Searched refs:view (Results 226 - 250 of 2427) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DChoreographer_Delegate.java16 package android.view;
H A DDisplay_Delegate.java17 package android.view;
H A DViewRootImpl_Delegate.java17 package android.view;
/frameworks/support/v4/java/android/support/v4/view/
H A DScrollingView.java17 package android.support.v4.view;
31 * <p>The default range is the drawing width of this view.</p>
51 * <p>The default offset is the scroll offset of this view.</p>
70 * <p>The default extent is the drawing width of this view.</p>
89 * <p>The default range is the drawing height of this view.</p>
106 * <p>The default offset is the scroll offset of this view.</p>
125 * <p>The default extent is the drawing height of this view.</p>
/frameworks/support/v7/appcompat/src/android/support/v7/internal/transition/
H A DActionBarTransition.java20 import android.view.ViewGroup;
/frameworks/base/core/java/android/transition/
H A DFade.java28 import android.view.View;
29 import android.view.ViewGroup;
35 * {@link View#setVisibility(int)} state of the view as well as whether it
36 * is parented in the current view hierarchy.
38 * <p>The ability of this transition to fade out a particular view, and the
40 * the situation of the view in the view hierarchy. For example, if a view was
41 * simply removed from its parent, then the view will be added into a {@link
42 * android.view
111 createAnimation(final View view, float startAlpha, final float endAlpha) argument
133 onAppear(ViewGroup sceneRoot, View view, TransitionValues startValues, TransitionValues endValues) argument
145 onDisappear(ViewGroup sceneRoot, final View view, TransitionValues startValues, TransitionValues endValues) argument
155 FadeAnimatorListener(View view) argument
[all...]
H A DChangeText.java25 import android.view.ViewGroup;
36 * text view to its new size before displaying the text that goes there.
64 * view at the end of the fade-out animation. This transition is typically
74 * end text into the affected target view(s). This transition is typically
77 * a sequence to fade out, then resize the view, then fade in.
129 if (transitionValues.view instanceof TextView) {
130 TextView textview = (TextView) transitionValues.view;
158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) {
161 final TextView view
[all...]
H A DRotate.java21 import android.view.View;
22 import android.view.ViewGroup;
36 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
41 transitionValues.values.put(PROPNAME_ROTATION, transitionValues.view.getRotation());
50 final View view = endValues.view;
54 view.setRotation(startRotation);
55 return ObjectAnimator.ofFloat(view, View.ROTATION,
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DMultiArgTestAdapter.java20 import android.view.View;
46 public static void setBoth(TextView view, MultiBindingClass1 class1, argument
48 view.setText(join(class1, class2));
52 public static void setBoth(TextView view, String str1, argument
54 view.setText(join(str1, str2));
58 public static void setClass1(TextView view, MultiBindingClass1 class1) { argument
59 view.setText(class1.getValue());
63 public static void setClassStr(TextView view, String str) { argument
64 view.setText(str);
68 public static void setClass2(TextView view, MultiBindingClass argument
73 setWithOldValue(TextView view, String oldValue, String newValue) argument
78 set2WithOldValues(TextView view, String oldValue1, String oldValue2, String newValue1, String newValue2) argument
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTableLayoutBindingAdapter.java31 public static void setCollapseColumns(TableLayout view, CharSequence columnsStr) { argument
35 if (isCollapsed != view.isColumnCollapsed(i)) {
36 view.setColumnCollapsed(i, isCollapsed);
42 public static void setShrinkColumns(TableLayout view, CharSequence columnsStr) { argument
44 view.setShrinkAllColumns(true);
46 view.setShrinkAllColumns(false);
53 view.setColumnShrinkable(column, shrinkable);
60 public static void setStretchColumns(TableLayout view, CharSequence columnsStr) { argument
62 view.setStretchAllColumns(true);
64 view
[all...]
/frameworks/base/core/java/android/animation/
H A DRevealAnimator.java19 import android.view.RenderNodeAnimator;
20 import android.view.View;
25 * This hidden class currently only accessed by the {@link android.view.View}.
/frameworks/base/core/java/android/view/
H A DIGraphicsStats.aidl17 package android.view;
/frameworks/base/core/java/android/widget/
H A DThemedSpinnerAdapter.java22 import android.view.View;
23 import android.view.ViewGroup;
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupChildren.java17 package android.view;
23 import android.view.View;
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListTakeFocusFromSide.java24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.LayoutInflater;
64 TextView view;
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
71 view.setText(mTitles[position]);
72 return view;
/frameworks/base/core/tests/coretests/src/com/android/internal/app/
H A DWindowDecorActionBarTestActivity.java21 import android.view.View;
22 import android.view.Window;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
H A DWindowManagerImpl.java16 package com.android.layoutlib.bridge.android.view;
19 import android.view.Display;
20 import android.view.DisplayAdjustments;
21 import android.view.DisplayInfo;
22 import android.view.View;
23 import android.view.WindowManager;
47 public void addView(View arg0, android.view.ViewGroup.LayoutParams arg1) {
57 public void updateViewLayout(View arg0, android.view.ViewGroup.LayoutParams arg1) {
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DEditTextPreferenceDialogFragment.java21 import android.view.View;
22 import android.view.ViewGroup;
23 import android.view.ViewParent;
40 protected void onBindDialogView(View view) { argument
41 super.onBindDialogView(view);
43 mEditText = new EditText(view.getContext());
50 if (oldParent != view) {
54 onAddEditTextToDialogView(view, mEditText);
70 * Adds the EditText widget of this preference to the dialog's view.
72 * @param dialogView The dialog view
[all...]
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
H A DShadowHelperApi21.java22 import android.view.ViewGroup;
23 import android.view.View;
24 import android.view.ViewOutlineProvider;
36 public void getOutline(View view, Outline outline) {
37 outline.setRect(0, 0, view.getWidth(), view.getHeight());
65 public static void setZ(View view, float z) { argument
66 view.setZ(z);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBaseFragment.java20 import android.view.View;
21 import android.view.ViewTreeObserver;
36 public void onViewCreated(View view, Bundle savedInstanceState) { argument
37 super.onViewCreated(view, savedInstanceState);
140 * and executed when view is created.
146 // if view is not created yet, delay until onViewCreated()
156 final View view = getView();
157 view.getViewTreeObserver().addOnPreDrawListener(
161 view.getViewTreeObserver().removeOnPreDrawListener(this);
171 view
[all...]
H A DBaseSupportFragment.java22 import android.view.View;
23 import android.view.ViewTreeObserver;
38 public void onViewCreated(View view, Bundle savedInstanceState) { argument
39 super.onViewCreated(view, savedInstanceState);
142 * and executed when view is created.
148 // if view is not created yet, delay until onViewCreated()
158 final View view = getView();
159 view.getViewTreeObserver().addOnPreDrawListener(
163 view.getViewTreeObserver().removeOnPreDrawListener(this);
173 view
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DOnChildViewHolderSelectedListener.java18 import android.view.View;
19 import android.view.ViewGroup;
32 * view is selected.
33 * @param position The position of the view in the adapter, or NO_POSITION
34 * if no view is selected.
/frameworks/support/v4/api21/android/support/v4/view/
H A DLayoutInflaterCompatLollipop.java18 package android.support.v4.view;
20 import android.view.LayoutInflater;
H A DViewGroupCompatLollipop.java17 package android.support.v4.view;
19 import android.view.ViewGroup;
/frameworks/support/v4/donut/android/support/v4/animation/
H A DValueAnimatorCompat.java19 import android.view.View;
28 public void setTarget(View view); argument

Completed in 3161 milliseconds

1234567891011>>