/packages/apps/Browser/src/com/android/browser/preferences/ |
WebViewPreview.java | 25 import android.view.View; 26 import android.view.ViewGroup; 58 protected void setupWebView(WebView view) {} 61 protected View onCreateView(ViewGroup parent) { 62 View root = super.onCreateView(parent); 77 protected void onBindView(View view) { 78 super.onBindView(view); 79 mWebView = (WebView) view.findViewById(R.id.webview) [all...] |
/packages/apps/Browser/src/com/android/browser/view/ |
BookmarkContainer.java | 17 package com.android.browser.view; 24 import android.view.View; 25 import android.view.View.OnClickListener; 26 import android.view.ViewConfiguration; 87 public void onClick(View view) { 90 mClickListener.onClick(view);
|
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
DialpadKeyButton.java | 23 import android.view.MotionEvent; 24 import android.view.View; 25 import android.view.accessibility.AccessibilityEvent; 26 import android.view.accessibility.AccessibilityManager; 27 import android.view.accessibility.AccessibilityNodeInfo; 44 public void onPressed(View view, boolean pressed);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/ |
StatePanelTrack.java | 28 import android.view.GestureDetector; 29 import android.view.MotionEvent; 30 import android.view.View; 31 import android.view.ViewGroup; 125 View view = findChildAt((int) e.getX(), (int) e.getY()); local 126 if (view == null) { 129 if (view instanceof StateView) { 130 StateView stateView = (StateView) view; 145 StateView view = (StateView) getChildAt(i); local 169 View view = mAdapter.getView(i, null, this); local 176 StateView view = (StateView) getChildAt(i); local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
EmailCopyContextMenu.java | 26 import android.view.ContextMenu; 27 import android.view.MenuInflater; 28 import android.view.MenuItem; 29 import android.view.View; 30 import android.view.ContextMenu.ContextMenuInfo; 31 import android.view.View.OnCreateContextMenuListener; 99 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo info) {
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
Screensaver.java | 36 import android.view.MotionEvent; 37 import android.view.View; 38 import android.view.WindowManager; 39 import android.view.animation.AccelerateInterpolator; 40 import android.view.animation.DecelerateInterpolator; 51 public boolean shouldOverrideUrlLoading(WebView view, String url) {
|
/cts/suite/pts/deviceTests/opengl/jni/reference/scene/flocking/ |
WaterMeshNode.h | 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection); 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
/cts/suite/pts/deviceTests/opengl/jni/reference/scene/glowing/ |
BlurMeshNode.h | 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection); 29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
OpenGLES20NativeActivityOne.java | 24 import android.view.Window; 25 import android.view.WindowManager; 41 OpenGLES20View view; field in class:OpenGLES20NativeActivityOne 59 view = new OpenGLES20View(this, viewType, viewIndex, mLatch); 60 setContentView(view); 76 view.onPause(); 82 if(view != null) { 83 view.onResume();
|
/cts/tests/tests/theme/src/android/theme/cts/ |
DeviceDefaultActivity.java | 23 import android.view.Window; 24 import android.view.WindowManager;
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
AccelerateDecelerateInterpolatorTest.java | 17 package android.view.animation.cts; 27 import android.view.View; 28 import android.view.animation.AccelerateDecelerateInterpolator; 29 import android.view.animation.AlphaAnimation; 30 import android.view.animation.Animation; 31 import android.view.animation.AnimationUtils; 32 import android.view.animation.Interpolator; 33 import android.view.animation.Transformation; 63 final View animWindow = mActivity.findViewById(R.id.anim_window) [all...] |
LinearInterpolatorTest.java | 17 package android.view.animation.cts; 21 import android.view.View; 22 import android.view.animation.AlphaAnimation; 23 import android.view.animation.Animation; 24 import android.view.animation.AnimationUtils; 25 import android.view.animation.Interpolator; 26 import android.view.animation.LinearInterpolator; 27 import android.view.animation.Transformation; 72 final View animWindow = mActivity.findViewById(R.id.anim_window) [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceHolder_BadSurfaceTypeExceptionTest.java | 16 package android.view.cts; 19 import android.view.SurfaceHolder.BadSurfaceTypeException;
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebViewClientTest.java | 23 import android.view.KeyEvent; 266 public void onPageStarted(WebView view, String url, Bitmap favicon) { 267 super.onPageStarted(view, url, favicon); 272 public void onPageFinished(WebView view, String url) { 273 super.onPageFinished(view, url); 280 public void onLoadResource(WebView view, String url) { 281 super.onLoadResource(view, url); 287 public void onReceivedError(WebView view, int errorCode, 289 super.onReceivedError(view, errorCode, description, failingUrl); 294 public void onFormResubmission(WebView view, Message dontResend, Message resend) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleAdapterTest.java | 26 import android.view.LayoutInflater; 27 import android.view.View; 146 View result = mSimpleAdapter.getView(0, null, mAdapterHost); 154 // use the previous result as the convert view 195 View result = mSimpleAdapter.getDropDownView(0, null, mAdapterHost); 214 View result = mSimpleAdapter.getDropDownView(0, null, mAdapterHost); 222 // use the previous result as the convert view 281 ImageView view = new ImageView(mContext); local 282 assertNull(view.getDrawable()) 337 TextView view = new TextView(mContext); local [all...] |
/developers/samples/android/ui/holo/BorderlessButtons/BorderlessButtons/src/main/java/com/example/android/borderlessbuttons/ |
MainActivity.java | 24 import android.view.Menu; 25 import android.view.MenuItem; 26 import android.view.View; 27 import android.view.ViewGroup; 48 findViewById(R.id.cancel_button).setOnClickListener(new View.OnClickListener() { 50 public void onClick(View view) { 55 findViewById(R.id.ok_button).setOnClickListener(new View.OnClickListener() { 57 public void onClick(View view) [all...] |
/development/samples/HeavyWeight/src/com/example/android/heavyweight/ |
HeavyWeight.java | 21 import android.view.View; 22 import android.view.View.OnClickListener; 40 public void onClick(View v) {
|
/development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/ |
ListViewAnimations.java | 29 import android.view.View; 63 public void onItemClick(AdapterView<?> parent, final View view, int position, long id) { 66 view.animate().setDuration(1000).alpha(0). 72 view.setAlpha(1); 76 // Here's where the problem starts - this animation will animate a View object. 77 // But that View may get recycled if it is animated out of the container, 78 // and the animation will continue to fade a view that now contains unrelated 80 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, 0) [all...] |
/device/asus/deb/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/flo/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/grouper/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/tilapia/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/lge/hammerhead/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/lge/mako/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/samsung/manta/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|