/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
GalleryTest.java | 3 import android.view.KeyEvent; 4 import android.view.View; 34 assertThat((Gallery) listener.view, sameInstance(gallery)); 42 assertThat((Gallery)listener.view, sameInstance(gallery)); 46 private static class TestOnKeyListener implements View.OnKeyListener { 47 View view; field in class:GalleryTest.TestOnKeyListener 52 public boolean onKey(View view, int keyCode, KeyEvent event) [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
TestAnimationListener.java | 3 import android.view.animation.Animation; 4 import android.view.animation.Animation.AnimationListener;
|
/frameworks/base/core/java/android/view/ |
ContextMenu.java | 17 package android.view; 76 * Sets the header of the context menu to the {@link View} given in 77 * <var>view</var>. This replaces the header title and icon (and those 80 * @param view The {@link View} used for the header. 83 public ContextMenu setHeaderView(View view);
|
IMagnificationCallbacks.aidl | 17 package android.view;
|
SubMenu.java | 17 package android.view; 70 * Sets the header of the submenu to the {@link View} given in 71 * <var>view</var>. This replaces the header title and icon (and those 74 * @param view The {@link View} used for the header. 77 public SubMenu setHeaderView(View view);
|
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeProvider.java | 17 package android.view.accessibility; 21 import android.view.View; 27 * virtual view hierarchy rooted at a given view for accessibility purposes. A virtual 28 * view hierarchy is a tree of imaginary Views that is reported as a part of the view 30 * Since the virtual View tree does not exist this class is responsible for 35 * The main use case of these APIs is to enable a custom view that draws complex content, 40 * A typical use case is to override {@link View#getAccessibilityNodeProvider()} of th [all...] |
/frameworks/base/core/java/com/android/internal/textservice/ |
ITextServicesSessionListener.aidl | 21 import android.view.textservice.SpellCheckerInfo;
|
/frameworks/base/core/tests/coretests/src/android/view/ |
ZeroSizedTest.java | 17 package android.view; 19 import android.view.ZeroSized; 24 import android.view.View; 29 * a View with a 0-sized dimension (width or height) will always have a null 33 private View mWithDimension; 34 private View mWithNoWdith; 35 private View mWithNoHeight; 36 private View mWithNoDimension; 89 private Bitmap createCacheForView(final View view) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListItemFocusablesFarApart.java | 19 import android.view.View; 20 import android.view.ViewGroup; 40 protected View createView(int position, ViewGroup parent, int desiredHeight) {
|
/frameworks/support/v4/eclair/android/support/v4/view/ |
MotionEventCompatEclair.java | 17 package android.support.v4.view; 19 import android.view.MotionEvent;
|
/frameworks/support/v4/ics-mr1/android/support/v4/view/accessibility/ |
AccessibilityRecordCompatIcsMr1.java | 17 package android.support.v4.view.accessibility; 19 import android.view.accessibility.AccessibilityRecord;
|
/packages/apps/Browser/src/com/android/browser/stub/ |
NullController.java | 6 import android.view.ActionMode; 7 import android.view.ContextMenu; 8 import android.view.KeyEvent; 9 import android.view.Menu; 10 import android.view.MenuItem; 11 import android.view.MotionEvent; 12 import android.view.View; 13 import android.view.ContextMenu.ContextMenuInfo; 85 public void onCreateContextMenu(ContextMenu menu, View v [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
EmailAddressAdapter.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 44 protected View inflateItemView(ViewGroup parent) { 49 protected View inflateItemViewLoading(ViewGroup parent) { 54 protected void bindView(View view, String directoryType, String directoryName, 56 TextView text1 = (TextView)view.findViewById(R.id.text1); 57 TextView text2 = (TextView)view.findViewById(R.id.text2) [all...] |
/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/Gallery2/src/com/android/gallery3d/filtershow/presets/ |
PresetManagementDialog.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 30 public class PresetManagementDialog extends DialogFragment implements View.OnClickListener { 35 public View onCreateView(LayoutInflater inflater, ViewGroup container, 37 View view = inflater.inflate(R.layout.filtershow_presets_management_dialog, container); local 41 mEditText = (EditText) view.findViewById(R.id.editView); 42 view.findViewById(R.id.cancel).setOnClickListener(this) [all...] |
/packages/apps/Stk/src/com/android/stk/ |
StkDigitsKeyListener.java | 20 import android.view.KeyEvent; 21 import android.view.inputmethod.EditorInfo;
|
/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...] |
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/apps/SdkController/src/com/android/tools/sdkcontroller/utils/ |
ApiHelper.java | 21 import android.view.View; 51 * Applies {@link View#setSystemUiVisibility(int)}, available only starting with API 11. 54 public void View_setSystemUiVisibility(View view, int visibility) {
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
GLSurfaceViewTest.java | 66 GLSurfaceView view = mActivity.getView(); local 72 view.onPause(); 77 view.onResume(); 91 GLSurfaceView view = mActivity.getView(); local 96 view.onPause(); 100 view.onResume();
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputBindingTest.java | 17 package android.view.inputmethod.cts; 23 import android.view.View; 24 import android.view.inputmethod.BaseInputConnection; 25 import android.view.inputmethod.InputBinding; 30 View view = new View(getContext()); local 31 BaseInputConnection bic = new BaseInputConnection(view, false);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
LayoutAnimation2.java | 17 package com.example.android.apis.view; 21 import android.view.animation.AlphaAnimation; 22 import android.view.animation.Animation; 23 import android.view.animation.AnimationSet; 24 import android.view.animation.LayoutAnimationController; 25 import android.view.animation.TranslateAnimation;
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
StableArrayAdapter.java | 23 import android.view.View; 24 import android.view.ViewGroup; 30 View.OnTouchListener mTouchListener; 33 List<String> objects, View.OnTouchListener listener) { 53 public View getView(int position, View convertView, ViewGroup parent) { 54 View view = super.getView(position, convertView, parent); local 55 if (view != convertView) [all...] |
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
StableArrayAdapter.java | 23 import android.view.View; 24 import android.view.ViewGroup; 30 View.OnTouchListener mTouchListener; 33 List<String> objects, View.OnTouchListener listener) { 53 public View getView(int position, View convertView, ViewGroup parent) { 54 View view = super.getView(position, convertView, parent); local 55 if (view != convertView) [all...] |
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/ |
TextFragment.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 30 View.OnClickListener clickListener; 33 public View onCreateView(LayoutInflater inflater, ViewGroup container, 35 View view = inflater.inflate(R.layout.text_fragment, container, false); local 36 view.setOnClickListener(clickListener); 37 return view; [all...] |