Searched defs:view (Results 251 - 275 of 386) sorted by relevance

<<111213141516

/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java23 import android.view.View;
29 * @param view The WebView that initiated the callback.
33 public void onProgressChanged(WebView view, int newProgress) {} argument
37 * @param view The WebView that initiated the callback.
40 public void onReceivedTitle(WebView view, String title) {} argument
44 * @param view The WebView that initiated the callback.
47 public void onReceivedIcon(WebView view, Bitmap icon) {} argument
51 * @param view The WebView that initiated the callback.
55 public void onReceivedTouchIconUrl(WebView view, String url, argument
60 * the current page that its custom view ha
77 onShowCustomView(View view, CustomViewCallback callback) argument
88 onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) argument
123 onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) argument
134 onRequestFocus(WebView view) argument
155 onJsAlert(WebView view, String url, String message, JsResult result) argument
173 onJsConfirm(WebView view, String url, String message, JsResult result) argument
192 onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) argument
213 onJsBeforeUnload(WebView view, String url, String message, JsResult result) argument
[all...]
H A DWebViewClient.java22 import android.view.KeyEvent;
34 * @param view The WebView that is initiating the callback.
39 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
50 * @param view The WebView that is initiating the callback.
55 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
64 * @param view The WebView that is initiating the callback.
67 public void onPageFinished(WebView view, String url) { argument
74 * @param view The WebView that is initiating the callback.
77 public void onLoadResource(WebView view, String url) { argument
88 * @param view Th
95 shouldInterceptRequest(WebView view, String url) argument
113 onTooManyRedirects(WebView view, Message cancelMsg, Message continueMsg) argument
159 onReceivedError(WebView view, int errorCode, String description, String failingUrl) argument
172 onFormResubmission(WebView view, Message dontResend, Message resend) argument
184 doUpdateVisitedHistory(WebView view, String url, boolean isReload) argument
200 onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) argument
211 onProceededAfterSslError(WebView view, SslError error) argument
229 onReceivedClientCertRequest(WebView view, ClientCertRequestHandler handler, String host_and_port) argument
244 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
261 shouldOverrideKeyEvent(WebView view, KeyEvent event) argument
275 onUnhandledKeyEvent(WebView view, KeyEvent event) argument
286 onScaleChanged(WebView view, float oldScale, float newScale) argument
299 onReceivedLoginRequest(WebView view, String realm, String account, String args) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DCursorAdapter.java25 import android.view.View;
26 import android.view.ViewGroup;
272 * Makes a new view to hold the data pointed to by cursor.
276 * @param parent The parent to which the new view is attached to
277 * @return the newly created view.
282 * Makes a new drop down view to hold the data pointed to by cursor.
286 * @param parent The parent to which the new view is attached to
287 * @return the newly created view.
294 * Bind an existing view to the data pointed to by cursor
295 * @param view Existin
300 bindView(View view, Context context, Cursor cursor) argument
[all...]
H A DSimpleAdapter.java20 import android.view.View;
21 import android.view.ViewGroup;
22 import android.view.LayoutInflater;
38 * {@link ViewBinder#setViewValue(android.view.View, Object, String)}
42 * <li> A view that implements Checkable (e.g. CheckBox). The expected bind value is a boolean.
71 * @param resource Resource identifier of a view layout that defines the views for this list
135 * @see #getDropDownView(int, android.view.View, android.view.ViewGroup)
146 private void bindView(int position, View view) { argument
158 final View v = view
315 setViewValue(View view, Object data, String textRepresentation) argument
[all...]
H A DSimpleCursorTreeAdapter.java22 import android.view.View;
32 * {@link ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)}
34 * returned value is false and the view to bind is a TextView,
36 * is false and the view to bind is an ImageView,
212 private void bindView(View view, Context context, Cursor cursor, int[] from, int[] to) { argument
216 View v = view.findViewById(to[i]);
248 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) { argument
254 bindView(view, context, cursor, mChildFrom, mChildTo);
258 protected void bindGroupView(View view, Context context, Cursor cursor, boolean isExpanded) { argument
264 bindView(view, contex
324 setViewValue(View view, Cursor cursor, int columnIndex) argument
[all...]
H A DSimpleExpandableListAdapter.java20 import android.view.View;
21 import android.view.ViewGroup;
22 import android.view.LayoutInflater;
70 * @param groupLayout resource identifier of a view layout that defines the
86 * @param childLayout resource identifier of a view layout that defines the
115 * @param expandedGroupLayout resource identifier of a view layout that
118 * @param collapsedGroupLayout resource identifier of a view layout that
134 * @param childLayout resource identifier of a view layout that defines the
164 * @param expandedGroupLayout resource identifier of a view layout that
167 * @param collapsedGroupLayout resource identifier of a view layou
243 bindView(View view, Map<String, ?> data, String[] from, int[] to) argument
[all...]
H A DToast.java28 import android.view.Gravity;
29 import android.view.LayoutInflater;
30 import android.view.View;
31 import android.view.WindowManager;
32 import android.view.WindowManagerImpl;
33 import android.view.accessibility.AccessibilityEvent;
34 import android.view.accessibility.AccessibilityManager;
37 * A toast is a view containing a quick little message for the user. The toast class
42 * When the view is shown to the user, appears as a floating view ove
130 setView(View view) argument
[all...]
H A DViewAnimator.java23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.animation.Animation;
26 import android.view.animation.AnimationUtils;
95 * Sets which child view will be displayed.
97 * @param whichChild the index of the child view to display
99 @android.view.RemotableViewMethod
117 * Returns the index of the currently displayed child view.
126 @android.view.RemotableViewMethod
134 @android.view
198 removeView(View view) argument
221 removeViewInLayout(View view) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DRingtonePickerActivity.java32 import android.view.View;
274 public void onItemSelected(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java17 package com.android.internal.view;
24 import android.view.DragEvent;
25 import android.view.IWindow;
26 import android.view.IWindowSession;
H A DBaseSurfaceHolder.java17 package com.android.internal.view;
24 import android.view.Surface;
25 import android.view.SurfaceHolder;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java17 package com.android.internal.view.menu;
27 import android.view.KeyEvent;
28 import android.view.Menu;
29 import android.view.MenuItem;
30 import android.view.SubMenu;
H A DActionMenuItemView.java17 package com.android.internal.view.menu;
26 import android.view.Gravity;
27 import android.view.MotionEvent;
28 import android.view.View;
29 import android.view.accessibility.AccessibilityEvent;
H A DBaseMenuPresenter.java17 package com.android.internal.view.menu;
20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.ViewGroup;
27 * Base class for MenuPresenters that have a consistent container view and item
50 * @param menuLayoutRes Layout resource ID for the menu container view
51 * @param itemLayoutRes Layout resource ID for a single item view
119 * Add an item view at the given index.
133 * Filter the child view at index and remove it if appropriate.
136 * @return true if the child view a
[all...]
H A DIconMenuItemView.java17 package com.android.internal.view.menu;
19 import com.android.internal.view.menu.MenuBuilder.ItemInvoker;
26 import android.view.Gravity;
27 import android.view.SoundEffectConstants;
28 import android.view.View;
29 import android.view.ViewDebug;
34 * The item view for each item in the {@link IconMenuView}.
121 // Let the view's click listener have top priority (the More button relies on this)
253 * @return layout params appropriate for this view. If layout params already exist, it will
H A DListMenuItemView.java17 package com.android.internal.view.menu;
23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
34 * The item view for each item in the ListView-based MenuViews.
/frameworks/base/core/tests/coretests/src/android/view/
H A DFocusFinderTest.java17 package android.view;
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java58 * view, and an up vector.
64 * @param centerX center of view X
65 * @param centerY center of view Y
66 * @param centerZ center of view Z
101 * @param fovy specifies the field of view angle, in degrees, in the Y
104 * view in the x direction. The aspect ratio is the ratio of x
123 * and view. The result is stored in win.
137 * @param view the current view, {x, y, width, height}
138 * @param viewOffset the offset into the view arra
147 gluProject(float objX, float objY, float objZ, float[] model, int modelOffset, float[] project, int projectOffset, int[] view, int viewOffset, float[] win, int winOffset) argument
213 gluUnProject(float winX, float winY, float winZ, float[] model, int modelOffset, float[] project, int projectOffset, int[] view, int viewOffset, float[] obj, int objOffset) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java26 import android.view.MotionEvent;
27 import android.view.View;
28 import android.view.ViewConfiguration;
29 import android.view.View.OnTouchListener;
63 final View view = mAdapter.getView(i, null, mLinearLayout);
66 mPerformanceHelper.addViewCallback(view);
76 view.setOnClickListener(new OnClickListener() {
82 view.setSoundEffectsEnabled(false);
86 mCallback.handleOnClick(view);
90 final View thumbnailView = view
120 removeViewInLayout(final View view) argument
[all...]
H A DRecentsVerticalScrollView.java26 import android.view.MotionEvent;
27 import android.view.View;
28 import android.view.ViewConfiguration;
70 final View view = mAdapter.getView(i, old, mLinearLayout);
73 mPerformanceHelper.addViewCallback(view);
84 view.setOnClickListener(new OnClickListener() {
90 view.setSoundEffectsEnabled(false);
94 mCallback.handleOnClick(view);
98 final View thumbnailView = view.findViewById(R.id.app_thumbnail);
101 final View anchorView = view
134 removeViewInLayout(final View view) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java33 import android.view.Gravity;
34 import android.view.LayoutInflater;
35 import android.view.View;
36 import android.view.ViewGroup;
37 import android.view.WindowManager;
38 import android.view.WindowManagerImpl;
215 final FrameLayout view = new FrameLayout(mContext);
233 view.setLayoutTransition(mLayoutTransition);
235 view.setLayoutParams(lp);
236 return view;
239 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
242 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java26 import android.view.ViewGroup;
202 public void onReceivedError(WebView view, int errorCode, String description, argument
211 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
217 public void onPageFinished(WebView view, String url) { argument
239 public void onReceivedTitle(WebView view, String title) { argument
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DProfileActivity.java26 import android.view.KeyEvent;
27 import android.view.View;
28 import android.view.View.OnClickListener;
79 public void onItemSelected(AdapterView<?> parent, View view, argument
93 public void onItemSelected(AdapterView<?> parent, View view, argument
118 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
123 public void onPageStarted(WebView view, String url, Bitmap favicon) { argument
124 super.onPageStarted(view, url, favicon);
132 public void onPageFinished(WebView view, String url) { argument
133 super.onPageFinished(view, ur
140 onPageStarted(WebView view, String url, Bitmap favicon) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DBaseAdapter.java31 import android.view.View;
32 import android.view.ViewGroup;
151 View view = pair.getFirst();
154 if (view != null) {
155 fillView(context, view, item, parentItem);
157 // create a text view to display an error.
160 view = tv;
163 return view;
166 private void fillView(BridgeContext context, View view, AdapterItem item, argument
168 if (view instanceo
[all...]
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java20 import android.view.View;
21 import android.view.ViewGroup;
288 * Returns the overall number of item view types across all partitions. An
297 * Returns the view type for the list item at the specified position in the
333 View view;
335 view = getHeaderView(i, mPartitions[i].cursor, convertView, parent);
341 view = getView(i, mPartitions[i].cursor, offset, convertView, parent);
343 if (view == null) {
347 return view;
356 * Returns the header view fo
378 bindHeaderView(View view, int partition, Cursor cursor) argument
[all...]

Completed in 397 milliseconds

<<111213141516