/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
CursorFactoryListAdapter.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 34 public View newView(Context context, ViewGroup parent); 35 public void bindView(View view, Context context, Cursor cursor); 39 * A simple view factory that inflates the views from XML and puts the display 49 public View newView(Context context, ViewGroup parent) { 55 public void bindView(View view, Context context, Cursor cursor) 68 View view = mViewFactory.newView(context, parent); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion8-expected-completion43.txt | 3 android:layout_margin : Specifies extra space on the left, top, right and bottom sides of this view. [dimension] 4 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension] 5 android:layout_marginTop : Specifies extra space on the top side of this view. [dimension] 6 android:layout_marginRight : Specifies extra space on the right side of this view. [dimension] 7 android:layout_marginBottom : Specifies extra space on the bottom side of this view. [dimension]
|
completion8-expected-completion44.txt | 2 android:layout_width : Specifies the basic width of the view. [dimension, enum] 3 android:layout_height : Specifies the basic height of the view. [dimension, enum] 6 android:layout_margin : Specifies extra space on the left, top, right and bottom sides of this view. [dimension] 7 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension] 8 android:layout_marginTop : Specifies extra space on the top side of this view. [dimension] 9 android:layout_marginRight : Specifies extra space on the right side of this view. [dimension] 10 android:layout_marginBottom : Specifies extra space on the bottom side of this view. [dimension]
|
/external/chromium/chrome/browser/resources/net_internals/ |
tabswitcherview.css | 6 .tab-switcher-view { 10 .tab-switcher-view ul { 16 .tab-switcher-view { 22 .tab-switcher-view li { 27 html[dir=rtl] .tab-switcher-view li { 31 .tab-switcher-view a { 43 .tab-switcher-view a:hover { 48 .tab-switcher-view a:visited, 49 .tab-switcher-view a { 53 .tab-switcher-view .selected [all...] |
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
previewable_contents_controller.h | 15 // the notion of an "active" view vs. a "preview" tab contents view. 17 // The "active" view is a container view that can be retrieved using 22 // preview is set, the active view is hidden (but stays in the view hierarchy). 23 // When the preview is removed, the active view is reshown. 26 // Container view for the "active" contents. 35 // Sets the current preview and installs its TabContentsView into the view 36 // hierarchy. Hides the active view. |preview| must not be NULL [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
LockScreenWidgetCallback.java | 19 import android.view.View; 25 // Sends a message to lock screen requesting the given view be shown. May be ignored, depending 26 // on lock screen state. View must be the top-level lock screen widget or it will be ignored. 27 public void requestShow(View self); 29 // Sends a message to lock screen requesting the view to be hidden. 30 public void requestHide(View self); 32 // Whether or not this view is currently visible on LockScreen 33 public boolean isVisible(View self); 36 // exclusively in response to user activity, i.e. user hits a button in the view [all...] |
/cts/tests/tests/holo/src/android/holo/cts/modifiers/ |
TimePickerModifier.java | 19 import android.view.View; 25 public View modifyView(View view) { 26 TimePicker timePicker = (TimePicker) view; 30 return view;
|
ViewPressedModifier.java | 19 import android.view.View; 24 public View modifyView(View view) { 25 view.setPressed(true); 26 return view;
|
/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);
|
/packages/apps/Camera/src/com/android/camera/ |
RotateDialogController.java | 23 import android.view.LayoutInflater; 24 import android.view.View; 25 import android.view.ViewGroup; 26 import android.view.animation.Animation; 27 import android.view.animation.AnimationUtils; 39 private View mDialogRootLayout; 41 private View mRotateDialogTitleLayout; 42 private View mRotateDialogButtonLayout; 60 View v = inflater.inflate(mLayoutResourceID, layoutRoot) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/ |
plugin.properties | 5 view.name.Devices = Devices 6 view.name.LogCat = LogCat 7 view.name.Threads = Threads 8 view.name.Heap = Heap 9 view.name.File_Explorer = File Explorer 10 view.name.Emulator_Control = Emulator Control 11 view.name.Allocation_Tracker = Allocation Tracker
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactsUnavailableFragment.java | 23 import android.view.Gravity; 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.View.OnClickListener; 27 import android.view.ViewGroup; 40 private View mView; 55 public View onCreateView( 89 mCreateContactButton.setVisibility(View.VISIBLE) [all...] |
/development/apps/Development/src/com/android/development/ |
ArrayAdapter.java | 20 import android.view.View; 21 import android.view.ViewGroup; 22 import android.view.LayoutInflater; 40 public abstract void bindView(View view, E item); 62 public View getView(int position, View convertView, ViewGroup parent) { 63 View view; local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Visibility1.java | 17 package com.example.android.apis.view; 25 import android.view.View; 26 import android.view.View.OnClickListener; 31 * Demonstrates making a view VISIBLE, INVISIBLE and GONE 36 private View mVictim; 43 // Find the view whose visibility will change 58 public void onClick(View v) { 59 mVictim.setVisibility(View.VISIBLE) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
l10n_util.mm | 24 NSSize WrapOrSizeToFit(NSView* view) { 25 if ([view isKindOfClass:[NSTextField class]]) { 26 NSTextField* textField = static_cast<NSTextField*>(view); 33 if ([view isKindOfClass:[NSMatrix class]]) { 34 NSMatrix* radioGroup = static_cast<NSMatrix*>(view); 36 return [GTMUILocalizerAndLayoutTweaker sizeToFitView:view]; 38 if ([view isKindOfClass:[NSButton class]]) { 39 NSButton* button = static_cast<NSButton*>(view); 45 return [GTMUILocalizerAndLayoutTweaker sizeToFitView:view]; 48 return [GTMUILocalizerAndLayoutTweaker sizeToFitView:view]; [all...] |
/frameworks/base/core/java/android/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/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/ex/chips/src/com/android/ex/chips/ |
SingleRecipientArrayAdapter.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 42 public View getView(int position, View convertView, ViewGroup parent) { 50 private View newView() { 54 private void bindView(View view, Context context, RecipientEntry entry) { 55 TextView display = (TextView) view.findViewById(android.R.id.title) [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ScrollViewListener.java | 19 import android.view.View; 28 * @param view The view 34 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll); 39 * @param view The view 45 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll) [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...] |
/sdk/chimpchat/src/com/android/chimpchat/core/ |
IChimpView.java | 24 * An interface for view introspection. 29 * Set the manager for this view to communicate through. 34 * Obtain the class of the view as a string 39 * Obtain the text contained in the view 44 * Obtain the location of the view on the device screen 49 * Obtain the checked status of this view. 54 * Obtain the enabled status of this view. 59 * Obtain the selected status of this view. 64 * Set the selected status of the this view 69 * Obtain the focused status of this view [all...] |
/cts/tests/src/android/view/animation/cts/ |
AnimationTestUtils.java | 17 package android.view.animation.cts; 20 import android.view.View; 21 import android.view.ViewGroup; 22 import android.view.animation.Animation; 23 import android.view.animation.LayoutAnimationController; 43 * @param view view window to run animation. 47 final View view, final Animation animation) [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
AutoTextTest.java | 22 import android.view.View; 33 args = {java.lang.CharSequence.class, int.class, int.class, android.view.View.class} 42 // New a View instance. 43 View view = new View(getContext()); local 47 actual = AutoText.get(src, 0, src.length(), view); 53 actual = AutoText.get(src, 0, src.length(), view); 88 View view = new View(getContext()); local [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListViewHeight.java | 21 import android.view.View; 22 import android.view.ViewGroup; 30 private View mButton1; 31 private View mButton2; 32 private View mButton3; 34 private View mOuterLayout; 57 // Clicking this button will show the list view and set it to a fixed height 59 mButton1.setOnClickListener(new View.OnClickListener() { 60 public void onClick(View v) [all...] |
/frameworks/base/docs/html/guide/topics/ui/ |
drag-drop.jd | 70 {@link android.view.View View} 73 {@link android.view.View.OnLongClickListener OnLongClickListener} 76 {@link android.view.View.OnDragListener OnDragListener} 79 {@link android.view.DragEvent DragEvent} 82 {@link android.view.View.DragShadowBuilder DragShadowBuilder [all...] |