Searched defs:view (Results 226 - 250 of 708) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListenerTest.java23 import android.view.KeyEvent;
97 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { argument
103 public void onScrollStateChanged(AbsListView view, int scrollState) { argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintErrorFragment.java23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.View.OnClickListener;
62 public void onViewCreated(View view, Bundle savedInstanceState) { argument
63 super.onViewCreated(view, savedInstanceState);
68 TextView messageView = (TextView) view.findViewById(R.id.message);
72 Button actionButton = (Button) view.findViewById(R.id.action_button);
88 public void onClick(View view) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationOverflowIconsView.java32 * A view to display all the overflowing icons on Keyguard.
68 private void applyColor(Notification notification, StatusBarIconView view) { argument
69 view.setColorFilter(mTintColor, PorterDuff.Mode.MULTIPLY);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DRevealActivity.java28 import android.view.View;
29 import android.view.View.OnClickListener;
30 import android.view.ViewAnimationUtils;
83 public void onClick(View view) { argument
84 Animator animator = ViewAnimationUtils.createCircularReveal(view,
85 view.getWidth() / 2, view.getHeight() / 2,
86 0, Math.max(view.getWidth(), view.getHeight()));
103 view
[all...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DClippingText.java21 import android.view.View;
22 import android.view.ViewGroup;
59 public void sendMessage(View view) { argument
H A DLoginActivity.java20 import android.view.View;
21 import android.view.ViewGroup;
80 public void sendMessage(View view) { argument
81 TextView textView = (TextView) view;
H A DLoginActivityFromResources.java20 import android.view.View;
21 import android.view.ViewGroup;
49 public void sendMessage(View view) { argument
67 TextView textView = (TextView) view;
H A DSequenceTest.java20 import android.view.View;
21 import android.view.ViewGroup;
71 public void sendMessage(View view) { argument
H A DSequenceTestSimple.java21 import android.view.View;
22 import android.view.ViewGroup;
67 public void sendMessage(View view) { argument
H A DUniqueIds.java20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
55 public void sendMessage(View view) { argument
56 mSceneMap.get(view).changeToScene();
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/
H A DBridgeMenuItemImpl.java17 package com.android.internal.view.menu;
22 import android.view.ContextThemeWrapper;
23 import android.view.View;
26 * An extension of the {@link MenuItemImpl} to store the view cookie also.
32 * the layout. For Menus, we store this cookie here and attach it to the corresponding view
58 // If the menu item has an associated action provider view,
59 // directly set the cookie in the view to cookie map stored in BridgeContext.
63 // We don't need to add the view cookie to the this item now. But there's no harm in
/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/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/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;
32 public void getOutline(View view, Outline outline) {
33 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/widget/
H A DHorizontalHoverCardSwitcher.java17 import android.support.v4.view.ViewCompat;
18 import android.view.View;
19 import android.view.ViewGroup;
20 import android.view.View.MeasureSpec;
21 import android.view.ViewGroup.MarginLayoutParams;
25 * the hover card left to left of selected child view. If there is no space when scroll
26 * to the end, right edge hover card will be aligned to right of parent view excluding
30 // left and right of selected card view
37 protected void insertView(View view) { argument
39 getParentViewGroup().addView(view);
43 onViewSelected(View view) argument
[all...]
H A DPresenter.java16 import android.view.View;
17 import android.view.ViewGroup;
57 * ViewHolder can be subclassed and used to cache any view accessors needed
62 public final View view; field in class:Presenter.ViewHolder
64 public ViewHolder(View view) { argument
65 this.view = view;
87 * Called when a view created by this presenter has been attached to a window.
89 * <p>This can be used as a reasonable signal that the view is about to be seen
94 * @param holder Holder of the view bein
119 cancelAnimationsRecursive(View view) argument
[all...]
/frameworks/support/v4/ics/android/support/v4/view/
H A DMenuItemCompatIcs.java18 package android.support.v4.view;
20 import android.view.MenuItem;
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityManagerCompatIcs.java17 package android.support.v4.view.accessibility;
20 import android.view.accessibility.AccessibilityManager;
21 import android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener;
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DGravityCompatJellybeanMr1.java18 package android.support.v4.view;
21 import android.view.Gravity;
H A DMarginLayoutParamsCompatJellybeanMr1.java18 package android.support.v4.view;
20 import android.view.ViewGroup;
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java17 package android.support.v4.view.accessibility;
20 import android.view.accessibility.AccessibilityNodeInfo;
21 import android.view.accessibility.AccessibilityNodeProvider;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewUtils.java21 import android.support.v4.view.ViewCompat;
23 import android.view.View;
52 public static boolean isLayoutRtl(View view) { argument
53 return ViewCompat.getLayoutDirection(view) == ViewCompat.LAYOUT_DIRECTION_RTL;
57 * Merge two states as returned by {@link ViewCompat#getMeasuredState(android.view.View)} ()}.
58 * @param curState The current state as returned from a view or the result
60 * @param newState The new view state to combine.
70 * reflection on {@code view}.
72 public static void computeFitSystemWindows(View view, Rect inoutInsets, Rect outLocalInsets) { argument
75 sComputeFitSystemWindowsMethod.invoke(view, inoutInset
86 makeOptionalFitsSystemWindows(View view) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DSwitchPreference.java22 import android.view.View;
66 * the view. Can be 0 to not look for defaults.
68 * supplies default values for the view, used only if
95 * the view. Can be 0 to not look for defaults.
121 protected void onBindView(View view) { argument
122 super.onBindView(view);
124 View checkableView = view.findViewById(com.android.internal.R.id.switchWidget);
141 syncSummaryView(view);
/frameworks/base/core/java/android/text/method/
H A DNumberKeyListener.java19 import android.view.KeyEvent;
20 import android.view.View;
96 public boolean onKeyDown(View view, Editable content, argument
138 return super.onKeyDown(view, content, keyCode, event);
/frameworks/base/core/java/android/transition/
H A DScene.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
96 * @param layoutId The id of a resource file that defines the view
114 * @param layout The view hierarchy of this scene, added as a child
132 * Gets the root of the scene, which is the root of the view hierarchy
136 * @return The root of the view hierarchy affected by this scene.
160 * with a layout view group or layout resource file which will
190 * Set the scene that the given view is in. The current scene is set only
191 * on the root view o
197 setCurrentScene(View view, Scene scene) argument
208 getCurrentScene(View view) argument
[all...]

Completed in 7367 milliseconds

1234567891011>>