Searched refs:view (Results 401 - 425 of 2431) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DAdapterHelper.java29 import android.view.View;
30 import android.view.ViewGroup;
52 View view = pair.getFirst();
55 if (view != null) {
56 fillView(context, view, item, parentItem, callback, adapterRef);
58 // create a text view to display an error.
61 view = tv;
64 return Pair.of(view, skipCallbackParser);
67 private static void fillView(BridgeContext context, View view, AdapterItem item, argument
69 if (view instanceo
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java17 package android.view;
96 View view = null;
102 view = createView(name, prefix, attrs);
103 if (view != null) {
114 if (view == null) {
115 view = super.onCreateView(name, attrs);
118 // Ignore. We'll try again using the custom view loader below.
121 // Finally try again using the custom view loader
122 if (view == null) {
123 view
229 setupViewInContext(View view, AttributeSet attrs) argument
328 postInflateProcess(View view) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java17 package android.view;
59 * Various debugging/tracing tools related to {@link View} and the view hierarchy.
82 * the view server. Only non-void methods with no arguments can be annotated
114 * @see android.view.ViewDebug.IntToString
134 * @see android.view.ViewDebug.IntToString
207 * @see android.view.ViewDebug.ExportedProperty
231 * @see android.view.ViewDebug.ExportedProperty
267 * the view is captured. Methods with this annotation must have no arguments
305 * @param className The className of the view to find
306 * @param hashCode The hashCode of the view t
386 trace(View view, RecyclerTraceType type, int... parameters) argument
394 startRecyclerTracing(String prefix, View view) argument
410 trace(View view, HierarchyTraceType type) argument
418 startHierarchyTracing(String prefix, View view) argument
428 dispatchCommand(View view, String command, String parameters, OutputStream clientStream) argument
521 profileViewAndChildren(final View view, BufferedWriter out) argument
526 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
622 profileViewOperation(View view, final ViewOperation<T> operation) argument
679 captureViewLayer(View view, DataOutputStream clientStream, boolean visible) argument
834 dumpv2(@onNull final View view, @NonNull ByteArrayOutputStream out) argument
855 dumpTheme(View view, OutputStream clientStream) argument
948 isRequestedView(View view, String className, int hashCode) argument
991 dumpView(Context context, View view, BufferedWriter out, int level, boolean includeProperties) argument
1094 dumpViewProperties(Context context, Object view, BufferedWriter out) argument
1100 dumpViewProperties(Context context, Object view, BufferedWriter out, String prefix) argument
1162 exportMethods(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1245 exportFields(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1595 dumpCapturedView(String tag, Object view) argument
1611 invokeViewMethod(final View view, final Method method, final Object[] args) argument
1648 setLayoutParameter(final View view, final String param, final int value) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java20 import android.view.View;
21 import android.view.ViewGroup;
33 * When RecyclerView needs direct access to the view group children, it can call unfiltered
55 * Marks a child view as hidden
65 * Unmarks a child view as hidden.
79 * Adds a view to the ViewGroup
89 * Add a view to the ViewGroup at an index
137 * @param view The view to remove.
139 void removeView(View view) { argument
318 isHidden(View view) argument
327 hide(View view) argument
353 removeViewIfHidden(View view) argument
500 indexOfChild(View view) argument
508 getChildViewHolder(View view) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractDetailsDescriptionPresenter.java20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
23 import android.view.ViewTreeObserver;
56 public ViewHolder(final View view) { argument
57 super(view);
58 mTitle = (TextView) view.findViewById(R.id.lb_details_description_title);
59 mSubtitle = (TextView) view.findViewById(R.id.lb_details_description_subtitle);
60 mBody = (TextView) view.findViewById(R.id.lb_details_description_body);
63 final int titleAscent = view
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DSupportActionModeWrapper.java17 package android.support.v7.internal.view;
22 import android.support.v4.internal.view.SupportMenu;
23 import android.support.v4.internal.view.SupportMenuItem;
25 import android.support.v7.internal.view.menu.MenuWrapperFactory;
26 import android.view.ActionMode;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.View;
34 * Wraps a support {@link android.support.v7.view.ActionMode} as a framework
35 * {@link android.view
112 setCustomView(View view) argument
[all...]
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
H A DInstrumentationUiAutomatorBridge.java23 import android.view.Display;
24 import android.view.ViewConfiguration;
25 import android.view.WindowManager;
/frameworks/base/core/java/android/text/method/
H A DMovementMethod.java20 import android.view.KeyEvent;
21 import android.view.MotionEvent;
45 public boolean onKeyOther(TextView view, Spannable text, KeyEvent event); argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java17 package android.view.inputmethod;
20 import android.view.KeyCharacterMap;
21 import android.view.KeyEvent;
54 * {@link android.view.inputmethod.InputMethodManager}. An editor
56 * {@link android.view.View#onCreateInputConnection(EditorInfo)}
283 * {@link android.view.inputmethod.ExtractedTextRequest}
287 * @return an {@link android.view.inputmethod.ExtractedText}
288 * object describing the state of the text view and containing the
646 * like a normal key event, to the currently focused view; this
647 * generally is the view tha
[all...]
H A DInputMethodSession.java17 package android.view.inputmethod;
21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
66 * This method is called when the user tapped a text view.
70 * @param focusChanged true if the user changed the focused view by this click.
121 * @see android.view.KeyEvent
136 * @see android.view.MotionEvent
151 * @see android.view.MotionEvent
/frameworks/base/core/java/android/webkit/
H A DWebViewFragment.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
39 * Called to instantiate the view. Creates and returns the WebView.
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorContentParent.java23 import android.view.Menu;
24 import android.view.Window;
25 import com.android.internal.view.menu.MenuPresenter;
/frameworks/base/core/tests/coretests/src/android/view/
H A DDisabled.java17 package android.view;
23 import android.view.View;
24 import android.view.View.OnClickListener;
H A DMutateDrawableTest.java17 package android.view;
21 import android.view.View;
22 import android.view.MutateDrawable;
/frameworks/base/core/tests/coretests/src/android/view/menu/
H A DMenuLayout.java17 package android.view.menu;
19 import android.view.menu.MenuScenario.Params;
22 import android.view.Menu;
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DToggleSeekBar.java21 import android.view.MotionEvent;
22 import android.view.View;
23 import android.view.accessibility.AccessibilityNodeInfo;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationViewWrapper.java20 import android.view.View;
23 * Wraps the actual notification content view; used to implement behaviors which are different for
50 protected NotificationViewWrapper(View view) { argument
51 mView = view;
64 * Notifies this wrapper that the content of the view might have changed.
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java22 import android.view.View;
23 import android.view.animation.AnimationUtils;
24 import android.view.animation.Interpolator;
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DMainActivity.java6 import android.view.Menu;
7 import android.view.MenuItem;
8 import android.view.View;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DBitmapsSkewActivity.java26 import android.view.View;
33 final BitmapsView view = new BitmapsView(this);
34 setContentView(view);
H A DNoAATextActivity.java24 import android.view.View;
33 final ScaledNoAA view = new ScaledNoAA(this);
34 setContentView(view);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DDemo5.java20 import android.view.View;
21 import android.view.ViewGroup;
44 public void sendMessage(View view) { argument
H A DFadingHierarchy.java20 import android.view.View;
21 import android.view.ViewGroup;
44 public void sendMessage(View view) { argument
H A DOverlayTest.java20 import android.view.View;
21 import android.view.ViewGroup;
39 public void onClick(View view) { argument
H A DScenesTestAutoTransition2.java21 import android.view.View;
22 import android.view.ViewGroup;
45 public void sendMessage(View view) { argument

Completed in 2746 milliseconds

<<11121314151617181920>>