HomeSort by relevance Sort by last modified time
    Searched refs:View (Results 1 - 25 of 3141) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/layoutlib/create/tests/mock_android/view/
View.java 17 package mock_android.view;
19 public class View {
ViewGroup.java 17 package mock_android.view;
19 public class ViewGroup extends View {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/
View.java 17 package mock_android.view;
19 public class View {
ViewGroup.java 17 package mock_android.view;
19 public class ViewGroup extends View {
  /frameworks/base/core/java/com/android/internal/widget/
LockScreenWidgetCallback.java 19 import android.view.View;
25 // Sends a message to lock screen requesting the given view be shown. May be ignored, depending
26 // on lock screen state. View must be the top-level lock screen widget or it will be ignored.
27 public void requestShow(View self);
29 // Sends a message to lock screen requesting the view to be hidden.
30 public void requestHide(View self);
32 // Whether or not this view is currently visible on LockScreen
33 public boolean isVisible(View self);
36 // exclusively in response to user activity, i.e. user hits a button in the view
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutModifier.java 19 import android.view.View;
22 * Interface used to do further setup on a view after it has been inflated.
26 /** Actions to take before inflating the view. */
30 * @param view inflated by the test activity
31 * @return the same view or another view that will be snapshotted by the test
33 View modifyView(View view);
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/view/
MockView.java 17 package android.view;
20 * Mock View class for testing
23 public class MockView extends View{
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsCallback.java 19 import android.view.View;
27 void handleOnClick(View selectedView);
28 void handleSwipe(View selectedView);
29 void handleLongPress(View selectedView, View anchorView, View thumbnailView);
  /packages/apps/Gallery2/src/com/android/camera/
VideoController.java 19 import android.view.View;
25 public void onReviewDoneClicked(View view);
26 public void onReviewCancelClicked(View viwe);
27 public void onReviewPlayClicked(View view);
33 public void onSingleTapUp(View view, int x, int y);
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
ViewPressedModifier.java 19 import android.view.View;
24 public View modifyView(View view) {
25 view.setPressed(true);
26 return view;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestOnClickListener.java 3 import android.view.View;
5 public class TestOnClickListener implements View.OnClickListener {
8 @Override public void onClick(View v) {
TestOnLongClickListener.java 3 import android.view.View;
5 public class TestOnLongClickListener implements View.OnLongClickListener {
9 public boolean onLongClick(View view) {
  /frameworks/base/core/java/android/view/
ViewManager.java 17 package android.view;
25 * Assign the passed LayoutParams to the passed View and add the view to the window.
26 * <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
27 * errors, such as adding a second view to a window without removing the first view.
28 * <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
31 * @param view The view to be added to this window.
32 * @param params The LayoutParams to assign to view
    [all...]
SoundEffectConstants.java 17 package android.view;
20 * Constants to be used to play sound effects via {@link View#playSoundEffect(int)}
35 * @param direction One of {@link View#FOCUS_UP}, {@link View#FOCUS_DOWN},
36 * {@link View#FOCUS_LEFT}, {@link View#FOCUS_RIGHT}, {@link View#FOCUS_FORWARD}
37 * or {@link View#FOCUS_BACKWARD}
43 case View.FOCUS_RIGHT:
45 case View.FOCUS_FORWARD
    [all...]
ViewParent.java 17 package android.view;
20 import android.view.accessibility.AccessibilityEvent;
23 * Defines the responsibilities for a class that will be a parent of a View.
24 * This is the API that a view sees when it wants to interact with its parent.
30 * child of this view parent. This will schedule a layout pass of the view
36 * Indicates whether layout was requested on this view parent.
43 * Called when a child wants the view hierarchy to gather and report
45 * the view hierarchy, such as SurfaceView can use this API to improve
46 * performance of the system. When no such a view is present in th
    [all...]
  /frameworks/base/core/java/android/webkit/
PluginStub.java 19 import android.view.View;
31 * Return a custom embedded view to draw the plugin.
34 * @return A custom View that will be managed by WebView.
36 public abstract View getEmbeddedView(int NPP, Context context);
39 * Return a custom full-screen view to be displayed when the user requests
41 * to display this View as completely full-screen.
44 * @return A custom View that will be managed by the application.
46 public abstract View getFullScreenView(int NPP, Context context);
  /frameworks/base/core/java/android/widget/
SpinnerAdapter.java 19 import android.view.View;
20 import android.view.ViewGroup;
30 * <p>Get a {@link android.view.View} that displays in the drop down popup
33 * @param position index of the item whose view we want.
34 * @param convertView the old view to reuse, if possible. Note: You should
35 * check that this view is non-null and of an appropriate type before
36 * using. If it is not possible to convert this view to display the
37 * correct data, this method can create a new view
    [all...]
  /frameworks/support/v4/gingerbread/android/support/v4/view/
ViewCompatGingerbread.java 17 package android.support.v4.view;
19 import android.view.View;
22 public static int getOverScrollMode(View v) {
26 public static void setOverScrollMode(View v, int mode) {
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmListeners.java 19 import android.view.View;
24 public static class DigitalClockClickListener implements View.OnClickListener {
33 public void onClick(View view) {
  /cts/tests/tests/view/src/android/view/cts/
View_MeasureSpecTest.java 17 package android.view.cts;
20 import android.view.View;
21 import android.view.View.MeasureSpec;
36 mUnspecifiedMeasureSpec = View.MeasureSpec.makeMeasureSpec(MEASURE_SPEC_SIZE,
37 View.MeasureSpec.UNSPECIFIED);
38 mExactlyMeasureSpec = View.MeasureSpec.makeMeasureSpec(MEASURE_SPEC_SIZE,
39 View.MeasureSpec.EXACTLY);
40 mAtMostMeasureSpec = View.MeasureSpec.makeMeasureSpec(MEASURE_SPEC_SIZE
    [all...]
  /external/chromium/chrome/browser/chromeos/views/
copy_background.h 12 class View;
18 // other (typically one of parent chain) view.
21 explicit CopyBackground(views::View* copy_from);
25 virtual void Paint(gfx::Canvas* canvas, views::View* view) const;
28 views::View* background_owner_;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ItemMoveGestureListener.java 19 import android.view.MotionEvent;
20 import android.view.View;
29 * @param view The view
34 public boolean onMoveBegin(View view, MotionEvent e);
39 * @param view The view
45 public boolean onMove(View view, MotionEvent e1, MotionEvent e2)
    [all...]
ScrollViewListener.java 19 import android.view.View;
28 * @param view The view
34 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll);
39 * @param view The view
45 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
SingleItemAdapter.java 18 import android.view.View;
19 import android.view.ViewGroup;
39 public View getView(int position, View convertView, ViewGroup parent) {
44 * Creates the view.
46 protected abstract View getView(View convertView, ViewGroup parent);
  /frameworks/support/v4/java/android/support/v4/view/
ViewCompat.java 17 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.ViewParent;
26 import android.view.accessibility.AccessibilityEvent;
29 * Helper for accessing features in {@link View} introduced after API
34 * Always allow a user to over-scroll this view, provided it is a
35 * view that can scroll
    [all...]

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 91011>>