Searched refs:view (Results 376 - 400 of 2431) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/view/
H A DGhostView.java16 package android.view;
25 * This view draws another View in an Overlay without changing the parent. It will not be drawn
29 * view becomes INVISIBLE.
37 private GhostView(View view) { argument
38 super(view.getContext());
39 mView = view;
86 public static void calculateMatrix(View view, ViewGroup host, Matrix matrix) { argument
87 ViewGroup parent = (ViewGroup) view.getParent();
94 public static GhostView addGhost(View view, ViewGroup viewGroup, Matrix matrix) { argument
95 if (!(view
134 addGhost(View view, ViewGroup viewGroup) argument
138 removeGhost(View view) argument
150 getGhost(View view) argument
259 isGhostWrapper(View view) argument
301 getParents(View view, ArrayList<View> parents) argument
314 isOnTop(View view, View comparedWith) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java25 import android.view.View;
31 * @param view The WebView that initiated the callback.
35 public void onProgressChanged(WebView view, int newProgress) {} argument
39 * @param view The WebView that initiated the callback.
42 public void onReceivedTitle(WebView view, String title) {} argument
46 * @param view The WebView that initiated the callback.
49 public void onReceivedIcon(WebView view, Bitmap icon) {} argument
53 * @param view The WebView that initiated the callback.
57 public void onReceivedTouchIconUrl(WebView view, String url, argument
62 * the current page that its custom view ha
82 onShowCustomView(View view, CustomViewCallback callback) argument
96 onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) argument
133 onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) argument
144 onRequestFocus(WebView view) argument
165 onJsAlert(WebView view, String url, String message, JsResult result) argument
183 onJsConfirm(WebView view, String url, String message, JsResult result) argument
202 onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) argument
223 onJsBeforeUnload(WebView view, String url, String message, JsResult result) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSizeTest.java17 package android.view;
20 import android.view.DrawableBgMinSize;
26 import android.view.View;
83 public void doMinimumSizeTest(View view) throws Exception { argument
84 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum width",
85 view.getWidth() >= mBackgroundDrawable.getMinimumWidth());
86 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum height",
87 view.getHeight() >= mBackgroundDrawable.getMinimumHeight());
115 public void doDiffBgMinimumSizeTest(final View view) throws Exception { argument
119 assertTrue(view
[all...]
/frameworks/base/core/java/android/transition/
H A DRecolor.java25 import android.view.View;
26 import android.view.ViewGroup;
52 transitionValues.values.put(PROPNAME_BACKGROUND, transitionValues.view.getBackground());
53 if (transitionValues.view instanceof TextView) {
55 ((TextView)transitionValues.view).getCurrentTextColor());
75 final View view = endValues.view;
89 if (view instanceof TextView) {
90 TextView textView = (TextView) view;
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DStorageBrowser.java26 import android.view.LayoutInflater;
27 import android.view.View;
28 import android.view.ViewGroup;
36 * A list view displaying all storage units on a device.
73 TextView view;
75 view = (TextView)mInflater.inflate(
78 view = (TextView)convertView;
83 view.setText(info.getDescription());
85 view.setText("???");
87 return view;
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DSetupWizardLayout.java34 import android.view.Gravity;
35 import android.view.LayoutInflater;
36 import android.view.View;
37 import android.view.ViewGroup;
38 import android.view.ViewStub;
39 import android.view.ViewTreeObserver;
45 import com.android.setupwizardlib.view.BottomScrollView;
46 import com.android.setupwizardlib.view.Illustration;
47 import com.android.setupwizardlib.view.NavigationBar;
54 * The container of the actual content. This will be a view i
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlButtonPresenterSelector.java18 import android.view.LayoutInflater;
19 import android.view.View;
20 import android.view.ViewGroup;
21 import android.view.accessibility.AccessibilityEvent;
70 public ActionViewHolder(View view) { argument
71 super(view);
72 mIcon = (ImageView) view.findViewById(R.id.icon);
73 mLabel = (TextView) view.findViewById(R.id.label);
74 mFocusableView = view.findViewById(R.id.button);
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.ViewTreeObserver;
32 public static String getTransitionName(View view) { argument
33 return view.getTransitionName();
60 public static void excludeTarget(Object transitionObject, View view, boolean exclude) { argument
62 transition.excludeTarget(view, exclude);
70 public static void setEpicenter(Object transitionObject, View view) { argument
72 final Rect epicenter = getBoundsOnScreen(view);
96 * Prepares the enter transition by adding a non-existent view t
269 containedBeforeIndex(final List<View> views, final View view, final int maxIndex) argument
296 getBoundsOnScreen(View view) argument
305 captureTransitioningViews(ArrayList<View> transitioningViews, View view) argument
324 findNamedViews(Map<String, View> namedViews, View view) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDialog.java25 import android.support.v7.view.ActionMode;
27 import android.view.View;
28 import android.view.ViewGroup;
45 // which means that we can't rely on onCreate() being called before a content view is set.
80 public void setContentView(View view) { argument
81 getDelegate().setContentView(view);
85 public void setContentView(View view, ViewGroup.LayoutParams params) { argument
86 getDelegate().setContentView(view, params);
102 public void addContentView(View view, ViewGroup.LayoutParams params) { argument
103 getDelegate().addContentView(view, param
[all...]
/frameworks/base/core/java/android/preference/
H A DCheckBoxPreference.java22 import android.view.View;
63 protected void onBindView(View view) { argument
64 super.onBindView(view);
66 View checkboxView = view.findViewById(com.android.internal.R.id.checkbox);
71 syncSummaryView(view);
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java21 import android.view.View;
42 public CharSequence getTransformation(CharSequence source, View view) { argument
53 if (view instanceof TextView) {
54 locale = ((TextView)view).getTextLocale();
63 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java17 package com.android.internal.view.menu;
23 import android.view.ContextMenu;
24 import android.view.View;
27 * Implementation of the {@link android.view.ContextMenu} interface.
31 * is not a content view of a Dialog or Activity (for example, the
32 * view was added directly to the window manager) and needs to show
38 * with a view's context menu items and show the context menu.
62 public ContextMenu setHeaderView(View view) { argument
63 return (ContextMenu) super.setHeaderViewInt(view);
67 * Shows this context menu, allowing the optional original view (an
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DAddColumn.java23 import android.view.View;
44 final TextView view = new TextView(AddColumn.this);
45 view.setText("Column " + (i + 1));
46 view.setPadding(3, 3, 3, 3);
47 newRow.addView(view, new TableRow.LayoutParams());
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DAnimated3dActivity.java28 import android.view.View;
38 ImageView view = new ImageView(this);
39 view.setImageResource(R.drawable.large_photo);
41 setContentView(view, new FrameLayout.LayoutParams(
45 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360.0f);
H A DBitmaps3dActivity.java27 import android.view.Gravity;
28 import android.view.View;
36 final BitmapsView view = new BitmapsView(this);
38 layout.addView(view, new FrameLayout.LayoutParams(800, 400, Gravity.CENTER));
39 view.setRotationX(-35.0f);
H A DRotate3dTextActivity.java24 import android.view.View;
38 Rotate3dTextView view = new Rotate3dTextView(this);
39 layout.addView(view, makeLayoutParams());
41 view = new Rotate3dTextView(this);
45 container.addView(view);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DManyEditTextActivityNoScrollPanScan.java21 import android.view.KeyEvent;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.view.WindowManager;
26 import android.view.inputmethod.InputMethodManager;
H A DManyEditTextActivityScrollPanScan.java21 import android.view.KeyEvent;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.view.WindowManager;
26 import android.view.inputmethod.InputMethodManager;
H A DOneEditTextActivityNotSelected.java22 import android.view.KeyEvent;
23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.WindowManager;
27 import android.view.inputmethod.InputMethodManager;
36 * Activity with non-EditText view selected initially
H A DOneEditTextActivitySelected.java21 import android.view.KeyEvent;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.view.WindowManager;
26 import android.view.inputmethod.InputMethodManager;
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DMainActivity.java21 import android.view.LayoutInflater;
22 import android.view.Menu;
23 import android.view.MenuItem;
24 import android.view.View;
25 import android.view.ViewGroup;
53 * @see android.app.Activity#onCreateOptionsMenu(android.view.Menu)
65 * @see android.app.Activity#onOptionsItemSelected(android.view.MenuItem)
80 * A placeholder fragment containing a simple view.
90 * android.support.v4.app.Fragment#onCreateView(android.view.LayoutInflater
91 * , android.view
[all...]
/frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
H A DFBOSync.java31 import android.view.Menu;
32 import android.view.MenuItem;
33 import android.view.View;
34 import android.view.MenuInflater;
35 import android.view.Window;
50 // Create our Preview view and set it as the content of our
H A DFBOTest.java31 import android.view.Menu;
32 import android.view.MenuItem;
33 import android.view.View;
34 import android.view.MenuInflater;
35 import android.view.Window;
50 // Create our Preview view and set it as the content of our
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DWindowCallback.java17 package android.view;
19 import android.view.ActionMode.Callback;
20 import android.view.WindowManager.LayoutParams;
21 import android.view.accessibility.AccessibilityEvent;
68 public boolean onPreparePanel(int featureId, View view, Menu menu) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DDrawerLayoutUtil.java24 import android.view.View;
26 import static android.view.Gravity.END;
27 import static android.view.Gravity.LEFT;
28 import static android.view.Gravity.RIGHT;
29 import static android.view.Gravity.START;

Completed in 531 milliseconds

<<11121314151617181920>>