HomeSort by relevance Sort by last modified time
    Searched refs:View (Results 1 - 25 of 2336) 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);
  /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;
  /frameworks/base/core/java/android/view/
ViewManager.java 17 package android.view;
24 public void addView(View view, ViewGroup.LayoutParams params);
25 public void updateViewLayout(View view, ViewGroup.LayoutParams params);
26 public void removeView(View view);
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) {
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 22 import android.view.View;
68 assertEquals(View.TEXT_DIRECTION_INHERIT, tv.getTextDirection());
75 tv.setTextDirection(View.TEXT_DIRECTION_FIRST_STRONG);
76 assertEquals(View.TEXT_DIRECTION_FIRST_STRONG, tv.getTextDirection());
78 tv.setTextDirection(View.TEXT_DIRECTION_ANY_RTL);
79 assertEquals(View.TEXT_DIRECTION_ANY_RTL, tv.getTextDirection());
81 tv.setTextDirection(View.TEXT_DIRECTION_INHERIT);
82 assertEquals(View.TEXT_DIRECTION_INHERIT, tv.getTextDirection());
84 tv.setTextDirection(View.TEXT_DIRECTION_LTR)
    [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);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailViewPagerAdapter.java 19 import android.support.v4.view.PagerAdapter;
20 import android.support.v4.view.ViewPager;
21 import android.view.View;
30 public static final String ABOUT_FRAGMENT_TAG = "view-pager-about-fragment";
31 public static final String UPDTES_FRAGMENT_TAG = "view-pager-updates-fragment";
39 * The initial value for the view count needs to be MAX_FRAGMENT_VIEW_COUNT,
42 * device, the view pager requires the second page to exist immediately on launch).
46 private View mAboutFragmentView;
47 private View mUpdatesFragmentView
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
Visibility.java 17 package android.view;
23 import android.view.View;
27 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
36 // Find the view whose visibility will change
51 View.OnClickListener mVisibleListener = new View.OnClickListener() {
52 public void onClick(View v) {
53 mVictim.setVisibility(View.VISIBLE);
57 View.OnClickListener mInvisibleListener = new View.OnClickListener()
    [all...]
  /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;
30 @TestTargetClass(View.MeasureSpec.class)
41 mUnspecifiedMeasureSpec = View.MeasureSpec.makeMeasureSpec(MEASURE_SPEC_SIZE,
42 View.MeasureSpec.UNSPECIFIED);
43 mExactlyMeasureSpec = View.MeasureSpec.makeMeasureSpec(MEASURE_SPEC_SIZE,
44 View.MeasureSpec.EXACTLY)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusAfterRemoval.java 25 import android.view.View;
42 topLeftButton.setOnClickListener(new View.OnClickListener() {
44 public void onClick(View v) {
45 left.setVisibility(View.GONE);
52 bottomLeftButton.setOnClickListener(new View.OnClickListener() {
54 public void onClick(View v) {
55 left.setVisibility(View.INVISIBLE);
61 topRightButton.setOnClickListener(new View.OnClickListener() {
63 public void onClick(View v)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLOfTwoFocusableInTouchMode.java 23 import android.view.View;
27 private View mButton1;
28 private View mButton2;
29 private View mButton3;
49 mButton1.setOnClickListener(new View.OnClickListener() {
50 public void onClick(View v) {
55 mButton2.setOnClickListener(new View.OnClickListener() {
56 public void onClick(View v) {
61 mButton3.setOnClickListener(new View.OnClickListener()
    [all...]

Completed in 689 milliseconds

1 2 3 4 5 6 7 8 91011>>