HomeSort by relevance Sort by last modified time
    Searched full:view (Results 126 - 150 of 7759) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesRtl.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
28 private View currentView;
32 public View onCreateView(LayoutInflater inflater, ViewGroup container,
39 public void onViewCreated(View view, Bundle savedInstanceState) {
40 super.onViewCreated(view, savedInstanceState);
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
package.html 3 Support classes to access some of the android.view.accessibility package features introduced after API level 4 in a backwards compatible fashion.
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyContactListAdapter.java 24 import android.view.View;
25 import android.view.ViewGroup;
73 protected View newView(Context context, int partition, Cursor cursor, int position,
75 final ContactListItemView view = new ContactListItemView(context, null); local
76 view.setUnknownNameText(mUnknownNameText);
77 return view;
81 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
82 ContactListItemView view = (ContactListItemView)itemView; local
83 bindName(view, cursor)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsListView.java 18 import android.view.View;
27 * See {@link View#setOnKeyListener}.
29 void setOnKeyListener(View.OnKeyListener l);
37 * See {@link View#setOnFocusChangeListener}.
39 void setOnFocusChangeListener(View.OnFocusChangeListener l);
42 * See {@link View#setVisibility}.
62 * Set whether or not to limit suggestions by view height. If {@code true}, only enough
63 * suggestions to fill the view without scrolling will be shown.
  /packages/apps/Settings/src/com/android/settings/inputmethod/
CheckBoxAndSettingsPreference.java 26 import android.view.View;
27 import android.view.View.OnClickListener;
37 private View mCheckBox;
48 protected void onBindView(View view) {
49 super.onBindView(view);
50 mCheckBox = view.findViewById(R.id.inputmethod_pref);
54 public void onClick(View arg0)
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsListFocus.java 19 import android.view.View;
24 * The view class of the stroke and the candidate.
29 /** the information of the pair of view */
42 * Get the pair of view
44 * @return The information of the pair of view
46 public View getPairView() {
51 * Set the pair of view
53 * @param pairView The information of the pair of view
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-completion8.txt 2 android:layout_width : Specifies the basic width of the view. [dimension, enum]
completion9-expected-completion62.txt 2 android:layout_width : Specifies the basic width of the view. [dimension, enum]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SurfaceViewOverlay.java 22 import android.view.View;
23 import android.view.View.OnClickListener;
34 View mVictimContainer;
35 View mVictim1;
36 View mVictim2;
81 final View mTarget;
83 HideMeListener(View target) {
87 public void onClick(View v)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 27 import android.view.animation.LinearInterpolator;
28 import android.view.MotionEvent;
29 import android.view.VelocityTracker;
30 import android.view.View;
64 private View mCurrView;
65 private View mCurrAnimView;
90 private float getTranslation(View v) {
99 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
110 private void setTranslation(View v, float translate)
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/
how-android-draws.jd 12 draw the layout tree. Drawing is handled by walking the tree and rendering each View that
13 intersects the invalid region. In turn, each View group is responsible for requesting
14 each of its children to be drawn (with the <code>{@link android.view.View#draw(Canvas) draw()}</code> method)
15 and each View is responsible for drawing itself.
25 <p>You can force a View to draw, by calling <code>{@link android.view.View#invalidate()}</code>.
32 pass is implemented in <code>{@link android.view.View#measure(int, int)}</code> and is a top-down traversa
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 74 "mock_android.view.View",
75 "mock_android.view.ViewGroup",
76 "mock_android.view.ViewGroup$LayoutParams",
77 "mock_android.view.ViewGroup$MarginLayoutParams",
91 ClassReader cr = mAa.findClass("mock_android.view.ViewGroup$LayoutParams",
95 assertEquals("mock_android/view/ViewGroup$LayoutParams", cr.getClassName());
96 assertArrayEquals(new String[] { "mock_android.view.ViewGroup$LayoutParams" },
108 mAa.findGlobs("mock_android.view", zipClasses, found);
117 "mock_android.view.ViewGroup$LayoutParams"
    [all...]
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 17 package android.view;
28 import android.view.inputmethod.InputMethodManager;
43 * the ViewManager interface, allowing you to add any View subclass as a
105 private View[] mViews;
139 public void addView(View view, android.view.ViewGroup.LayoutParams params) {
140 mWindowManager.addView(view, params, mCompatibilityInfo);
144 public void updateViewLayout(View view, android.view.ViewGroup.LayoutParams params)
355 View view = root.getView(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ChronometerDemo.java 17 package com.example.android.apis.view;
26 import android.view.View;
27 import android.view.View.OnClickListener;
61 View.OnClickListener mStartListener = new OnClickListener() {
62 public void onClick(View v) {
67 View.OnClickListener mStopListener = new OnClickListener() {
68 public void onClick(View v) {
73 View.OnClickListener mResetListener = new OnClickListener()
    [all...]
List12.java 17 package com.example.android.apis.view;
21 import android.view.KeyEvent;
22 import android.view.View;
23 import android.view.View.OnClickListener;
24 import android.view.View.OnKeyListener;
33 * Demonstrates the using a list view in transcript mode
60 public void onClick(View v)
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
package.html 8 {@link android.view.accessibility.AccessibilityEvent}s are sent by the system when
10 {@link android.widget.Button} is clicked, a {@link android.view.View} is focused, etc.
13 {@link android.view.accessibility.AccessibilityRecord} contains information
14 about state change of its source {@link android.view.View}. When a view fires
22 {@link android.view.accessibility.AccessibilityNodeInfo} represents a node of the
24 of view of an {@link android.accessibilityservice.AccessibilityService} a window content is
26 to the view hierarchy. In other words, a custom view is free to report itself a
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ContextMenuBuilder.java 17 package com.android.internal.view.menu;
23 import android.view.ContextMenu;
24 import android.view.View;
27 * Implementation of the {@link android.view.ContextMenu} interface.
31 * is not a content view of a Dialog or Activity (for example, the
32 * view was added directly to the window manager) and needs to show
37 * call {@link #show(View, IBinder)} which will populate the menu
38 * with a view's context menu items and show the context menu.
62 public ContextMenu setHeaderView(View view)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
ViewStubTest.java 17 package android.view;
19 import android.view.StubbedView;
25 import android.view.View;
26 import android.view.ViewStub;
42 final View stub = activity.findViewById(R.id.viewStub);
52 final View swapped = stub.inflate();
54 assertNotNull("The inflated view is null", swapped);
63 final View swapped = stub.inflate();
65 assertNotNull("The inflated view is null", swapped)
    [all...]
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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
EventHole.java 29 import android.view.HapticFeedbackConstants;
30 import android.view.IWindowManager;
31 import android.view.InputDevice;
32 import android.view.KeyCharacterMap;
33 import android.view.KeyEvent;
34 import android.view.MotionEvent;
35 import android.view.View;
36 import android.view.ViewConfiguration;
37 import android.view.ViewTreeObserver
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PickerActivity.java 24 import android.view.Menu;
25 import android.view.MenuInflater;
26 import android.view.MenuItem;
27 import android.view.View;
28 import android.view.View.OnClickListener;
29 import android.view.Window;
54 View view = findViewById(R.id.cancel) local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
SpinnerProgressDialog.java 20 import android.view.MotionEvent;
21 import android.view.View;
22 import android.view.ViewGroup;
23 import android.view.ViewGroup.LayoutParams;
39 private final ArrayList<View> enabledTools = new ArrayList<View>();
53 View view = toolbar.getChildAt(i); local
54 if (view.isEnabled())
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListAdapter.java 27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.ViewGroup;
50 public void bindView(View view, Context context, Cursor cursor) {
51 if (!(view instanceof ConversationListItem)) {
52 Log.e(TAG, "Unexpected bound view: " + view);
56 ConversationListItem headerView = (ConversationListItem) view;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.LayoutInflater;
63 public View getView(int position, View convertView, ViewGroup parent) {
64 TextView view; local
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
71 view.setText(mTitles[position])
    [all...]
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
OneEditTextActivityNotSelected.java 22 import android.view.KeyEvent;
23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.WindowManager;
27 import android.view.inputmethod.InputMethodManager;
36 * Activity with non-EditText view selected initially
40 private View mRootView;
41 private View mDefaultFocusedView;
65 public View getRootView()
    [all...]

Completed in 3348 milliseconds

1 2 3 4 56 7 8 91011>>