/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
apps.jd | 14 <li><a href="#focus-enable">Enabling view focus</a></li> 33 <li>{@link android.view.accessibility.AccessibilityEvent}</li> 34 <li>{@link android.view.accessibility.AccessibilityNodeInfo}</li> 35 <li>{@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}</li> 36 <li>{@link android.view.View.AccessibilityDelegate}</li> 37 <li>{@link android.support.v4.view.AccessibilityDelegateCompat}</li> 64 <a href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription"> 82 <p>If you build custom controls that extend the {@link android.view.View} class, you must complet [all...] |
/development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/ |
NativeAudio.java | 23 import android.view.View; 24 import android.view.View.OnClickListener; 72 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) { 85 public void onClick(View view) { 92 public void onClick(View view) { [all...] |
/cts/tests/tests/holo/src/android/holo/cts/modifiers/ |
SearchViewModifier.java | 22 import android.view.View; 37 public View modifyView(View view) { 38 SearchView searchView = (SearchView) view; 39 Context context = view.getContext(); 51 throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
GraphicsActivity.java | 21 import android.view.View; 22 import android.view.ViewGroup; 34 public void setContentView(View view) { 37 vg.addView(view); 38 view = vg; 41 super.setContentView(view);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Animation1.java | 17 package com.example.android.apis.view; 25 import android.view.View; 26 import android.view.animation.Animation; 27 import android.view.animation.AnimationUtils; 29 public class Animation1 extends Activity implements View.OnClickListener { 36 View loginButton = findViewById(R.id.login); 40 public void onClick(View v) {
|
/external/chromium/chrome/browser/ui/cocoa/ |
sidebar_controller.h | 19 // A class that handles updates of the sidebar view within a browser window. 24 // A view hosting sidebar contents. 33 // This controller's view. 34 - (NSSplitView*)view; 36 // The compiler seems to have trouble handling a function named "view" that 45 // Call when the sidebar view is properly sized and the render widget host view 46 // should be put into the view hierarchy.
|
url_drop_target.h | 14 // Object which coordinates the dropping of URLs on a given view, sending data 24 // Initialize the given view, which must implement the |URLDropTarget| (below), 26 - (id)initWithView:(NSView<URLDropTarget>*)view; 28 // The owner view should implement the following methods by calling the 57 // The given URLs (an |NSArray| of |NSString|s) were dropped in the given view 58 // at the given point (in that view's coordinates). 59 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point; 61 // The given text was dropped in the given view at the given point (in that 62 // view's coordinates). 63 - (void)dropText:(NSString*)text inView:(NSView*)view at:(NSPoint)point [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowWindow.java | 3 import android.view.Window; 4 import android.view.WindowManager;
|
ShadowFragmentActivity.java | 7 import android.view.View; 92 public View getCurrentFocus() { 93 View focusedView = super.getCurrentFocus(); 99 View view = shadowOf(fragment).view; local 100 if (view != null) { 101 focusedView = view.findFocus(); 115 View view = shadowOf(fragment).view local [all...] |
/external/webkit/Source/WebCore/page/mac/ |
ChromeMac.mm | 29 void Chrome::focusNSView(NSView* view) 34 if (firstResponder == view) 37 if (![view window] || ![view superview] || ![view acceptsFirstResponder]) 40 client()->makeFirstResponder(view); 43 // remove the view from its superview while it's being made 46 if (![view superview])
|
/frameworks/base/core/java/android/view/ |
CollapsibleActionView.java | 17 package android.view; 19 import android.view.MenuItem.OnActionExpandListener; 22 * When a {@link View} implements this interface it will receive callbacks 23 * when expanded or collapsed as an action view alongside the optional, 31 * Called when this view is expanded as an action view. 37 * Called when this view is collapsed as an action view.
|
WindowManagerImpl.java | 17 package android.view; 26 * allowing you to add any View subclass as a top-level window on the screen. 68 public void addView(View view, ViewGroup.LayoutParams params) { 69 mGlobal.addView(view, params, mDisplay, mParentWindow); 73 public void updateViewLayout(View view, ViewGroup.LayoutParams params) { 74 mGlobal.updateViewLayout(view, params); 78 public void removeView(View view) { [all...] |
/frameworks/base/core/tests/coretests/src/android/view/ |
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) {
|
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectViewer.java | 32 import android.view.View; 42 * A view to display the properties of an object. 44 public class ObjectViewer extends Activity implements View.OnClickListener { 78 // try to start an activity to view the file 119 TextView view = (TextView)findViewById(R.id.name); local 121 view.setText(mFileName); 122 view = (TextView)findViewById(R.id.format); 123 view.setText(Integer.toHexString(info.getFormat()).toUpperCase()); 124 view = (TextView)findViewById(R.id.size) [all...] |
StorageBrowser.java | 26 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. 72 public View getView(int position, View convertView, ViewGroup parent) { 73 TextView view; local 75 view = (TextView)mInflater.inflate( 78 view = (TextView)convertView [all...] |
/frameworks/support/v4/honeycomb/android/support/v4/view/ |
MenuItemCompatHoneycomb.java | 17 package android.support.v4.view; 19 import android.view.MenuItem; 20 import android.view.View; 30 public static MenuItem setActionView(MenuItem item, View view) { 31 return item.setActionView(view); 38 public static View getActionView(MenuItem item) {
|
/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/ContactsCommon/src/com/android/contacts/common/util/ |
ViewUtil.java | 19 import android.view.View; 20 import android.view.ViewGroup; 30 * @throws IllegalStateException Thrown if the view's width is unknown before a layout pass 33 public static int getConstantPreLayoutWidth(View view) { 35 final ViewGroup.LayoutParams p = view.getLayoutParams(); 37 throw new IllegalStateException("Expecting view's width to be a constant rather " +
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoPageProgressBar.java | 19 import android.view.LayoutInflater; 20 import android.view.View; 21 import android.view.ViewGroup; 22 import android.view.ViewGroup.LayoutParams; 29 private View mProgress; 41 mContainer.setVisibility(View.VISIBLE); 48 mContainer.setVisibility(View.INVISIBLE);
|
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/ |
CameraPreviewView.java | 8 import android.view.SurfaceHolder; 9 import android.view.SurfaceView; 35 * @see android.view.SurfaceHolder.Callback#surfaceChanged(android.view.SurfaceHolder, int, int, int) 44 * @see android.view.SurfaceHolder.Callback#surfaceCreated(android.view.SurfaceHolder) 53 * @see android.view.SurfaceHolder.Callback#surfaceDestroyed(android.view.SurfaceHolder)
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
CandidatesViewManager.java | 22 import android.view.Gravity; 23 import android.view.View; 24 import android.view.ViewGroup; 25 import android.view.ViewGroup.LayoutParams; 34 * The interface of candidates view manager used by {@link OpenWnn}. 39 /** Size of candidates view (normal) */ 41 /** Size of candidates view (full) */ 43 /** Size of candidates view (close/non-display) */ 67 /** The view of the LongPressDialog * [all...] |
/external/webkit/Source/WebCore/dom/ |
TextEvent.cpp | 39 PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) 41 return adoptRef(new TextEvent(view, data, inputType)); 44 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace) 46 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false)); 49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) 51 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle)); 54 PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data) 56 return adoptRef(new TextEvent(view, data, TextEventInputDrop)); 66 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) 67 : UIEvent(eventNames().textInputEvent, true, true, view, 0 [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/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ViewFlipperActivity.java | 21 import android.view.Gravity; 22 import android.view.LayoutInflater; 23 import android.view.View; 36 final View widget = inflater.inflate(R.layout.widget, null); 41 View view = inflater.inflate(R.layout.flipper_item, flipper, false); local 42 flipper.addView(view); 43 ((ImageView) view.findViewById(R.id.widget_image)).setImageResource(R.drawable.sunset1); 44 ((TextView) view.findViewById(R.id.widget_text)).setText("This is a long line of text, " [all...] |
/frameworks/support/v4/honeycomb/android/support/v4/widget/ |
SearchViewCompatHoneycomb.java | 22 import android.view.View; 41 public static View newSearchView(Context context) { 45 public static void setSearchableInfo(View searchView, ComponentName searchableComponent) { 83 public static CharSequence getQuery(View searchView) { 87 public static void setQuery(View searchView, CharSequence query, boolean submit) { 91 public static void setQueryHint(View searchView, CharSequence hint) { 95 public static void setIconified(View searchView, boolean iconify) { 99 public static boolean isIconified(View searchView) { 103 public static void setSubmitButtonEnabled(View searchView, boolean enabled) [all...] |