HomeSort by relevance Sort by last modified time
    Searched refs:View (Results 1 - 25 of 1184) 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/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/core/java/android/view/
ViewParent.java 17 package android.view;
22 * Defines the responsibilities for a class that will be a parent of a View.
23 * This is the API that a view sees when it wants to interact with its parent.
29 * child of this view parent. This will schedule a layout pass of the view
35 * Indicates whether layout was requested on this view parent.
42 * Called when a child wants the view hierarchy to gather and report
44 * the view hierarchy, such as SurfaceView can use this API to improve
45 * performance of the system. When no such a view is present in the
47 * view hierarchy performance
    [all...]
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...]
  /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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragSource.java 19 import android.view.View;
27 void onDropCompleted(View target, boolean success);
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountSyncSettingsInAddAccount.java 6 import android.view.View;
7 import android.view.View.OnClickListener;
16 private View mFinishArea;
17 private View mFinishButton;
23 mRemoveAccountArea.setVisibility(View.GONE);
24 mFinishArea = (View) findViewById(R.id.finish_button_area);
25 mFinishArea.setVisibility(View.VISIBLE);
26 mFinishButton = (View) findViewById(R.id.finish_button)
    [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...]
VisibilityCallback.java 17 package android.view;
27 import android.view.View;
31 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
44 // Find the view whose visibility will change
59 View.OnClickListener mVisibleListener = new View.OnClickListener() {
60 public void onClick(View v) {
61 mVictim.setVisibility(View.VISIBLE);
65 View.OnClickListener mInvisibleListener = new View.OnClickListener()
    [all...]
GlobalFocusChange.java 17 package android.view;
23 import android.view.ViewTreeObserver;
24 import android.view.View;
27 public View mOldFocus;
28 public View mNewFocus;
42 public void onGlobalFocusChanged(View oldFocus, View newFocus) {
StubbedView.java 17 package android.view;
23 import android.view.View;
34 findViewById(R.id.vis).setOnClickListener(new View.OnClickListener() {
35 public void onClick(View v) {
36 final View view = findViewById(R.id.viewStub);
37 if (view != null) {
38 view.setVisibility(View.VISIBLE)
    [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...]
  /packages/apps/Browser/src/com/android/browser/
SelectDialog.java 20 import android.view.LayoutInflater;
21 import android.view.View;
24 private View mCopyButton;
25 private View mSelectAllButton;
26 private View mShareButton;
27 private View mFindButton;
45 private View.OnClickListener mCopyListener = new View.OnClickListener() {
46 public void onClick(View v)
    [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...]
VerticalFocusSearchTest.java 23 import android.view.FocusFinder;
24 import android.view.View;
25 import android.view.ViewGroup;
49 View findNextFocus(ViewGroup root, View focused, int direction);
55 public View findNextFocus(ViewGroup root, View focused, int direction) {
89 mFocusFinder.findNextFocus(mLayout, mTopWide, View.FOCUS_UP));
92 mFocusFinder.findNextFocus(mLayout, mTopWide, View.FOCUS_LEFT))
    [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...]
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 20 import android.view.View;
37 public CharSequence getTransformation(CharSequence source, View view);
43 public void onFocusChanged(View view, CharSequence sourceText,
KeyListener.java 20 import android.view.KeyEvent;
21 import android.view.View;
27 * {@link android.view.inputmethod.InputMethod}; it should only be used
57 public boolean onKeyDown(View view, Editable text,
65 public boolean onKeyUp(View view, Editable text,
73 public boolean onKeyOther(View view, Editable text, KeyEvent event)
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
InputViewManager.java 19 import android.view.View;
21 import android.view.inputmethod.EditorInfo;
24 * The interface of input view manager used by OpenWnn.
30 * Initialize the input view.
36 * @return The input view created in the initialize process; {@code null} if cannot create a input view.
38 public View initView(OpenWnn parent, int width, int height);
41 * Get the input view being used currently.
43 * @return The input view; {@code null} if no input view is used currently
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SurfaceViewOverlay.java 22 import android.view.View;
23 import android.view.View.OnClickListener;
34 View mVictimContainer;
35 View mVictim1;
36 View mVictim2;
81 final View mTarget;
83 HideMeListener(View target) {
87 public void onClick(View v)
    [all...]

Completed in 5647 milliseconds

1 2 3 4 5 6 7 8 91011>>