HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 1626 - 1650 of 7837) sorted by null

<<61626364656667686970>>

  /frameworks/support/v4/java/android/support/v4/view/
VelocityTrackerCompat.java 17 package android.support.v4.view;
19 import android.view.VelocityTracker;
  /frameworks/support/v4/java/android/support/v4/widget/
ListPopupWindowCompat.java 19 import android.view.View;
20 import android.view.View.OnTouchListener;
31 public OnTouchListener createDragToOpenListener(Object listPopupWindow, View src);
39 public OnTouchListener createDragToOpenListener(Object listPopupWindow, View src) {
49 public OnTouchListener createDragToOpenListener(Object listPopupWindow, View src) {
73 * an {@link OnTouchListener} that can be added to the source view to
74 * implement drag-to-open behavior. Generally, the source view should be the
75 * same view that was passed to ListPopupWindow.setAnchorView(View)
    [all...]
  /frameworks/support/v4/jellybean-mr1/android/support/v4/view/
GravityCompatJellybeanMr1.java 18 package android.support.v4.view;
21 import android.view.Gravity;
MarginLayoutParamsCompatJellybeanMr1.java 18 package android.support.v4.view;
20 import android.view.ViewGroup;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuPresenter.java 17 package android.support.v7.internal.view.menu;
21 import android.view.ViewGroup;
61 * @param context Context for this presenter; used for view creation and resource management
117 * Called when a menu item with a collapsable action view should expand its action view.
121 * @return true if this presenter expanded the action view, false otherwise.
126 * Called when a menu item with a collapsable action view should collapse its action view.
130 * @return true if this presenter collapsed the action view, false otherwise.
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DecorContentParent.java 23 import android.support.v7.internal.view.menu.MenuPresenter;
25 import android.view.Menu;
NativeActionModeAwareLayout.java 23 import android.view.ActionMode;
24 import android.view.View;
42 public ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback) {
53 ActionMode startActionModeForChild(View originalView, ActionMode.Callback callback);
  /packages/apps/Camera2/src/com/android/camera/
ToggleImageButton.java 21 import android.view.View;
32 * @param view the ToggleImageButton that received the touch event
35 public abstract void stateChanged(View view, boolean state);
72 public void stateChanged(View v, int state) {
  /packages/apps/Camera2/src/com/android/camera/filmstrip/
DataAdapter.java 20 import android.view.View;
82 * Returns the view to visually present the image data.
84 * @param context The {@link android.content.Context} to create the view.
85 * @param recycled A view that can be reused if one is available, or null.
87 * @return The view representing the image data. Null if unavailable or
90 public View getView(Context context, View recycled, int dataID, ActionCallback actionCallback);
92 /** Returns a unique identifier for the view created by this data so that the view
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
FrameLayoutWithOverlay.java 21 import android.view.View;
22 import android.view.ViewGroup;
35 // Programmatically create touch-interceptor View.
41 /** After adding the View, bring the overlay to the front to ensure it's always on top. */
43 public void addView(View child, int index, ViewGroup.LayoutParams params) {
49 * Delegate to overlay: set the View that it will use as its alpha-layer.
54 protected void setAlphaLayer(View layer) {
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/
IntegrationTestUtils.java 27 import android.view.View;
28 import android.view.ViewGroup;
58 * Find a view by a given resource id, from the given activity, and click it, iff it is
59 * enabled according to {@link View#isEnabled()}.
65 View view = activity.findViewById(buttonResourceId);
66 Assert.assertNotNull(view);
67 if (view.isEnabled()) {
68 view.performClick()
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/util/
DialerUtils.java 32 import android.view.View;
33 import android.view.inputmethod.InputMethodManager;
115 * Sets the image asset and text for an empty list view (see empty_list_view.xml).
117 * @param emptyListView The empty list view.
123 View emptyListView, int imageResId, int strResId, Resources res) {
128 emptyListViewImage.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO);
170 View.LAYOUT_DIRECTION_RTL;
173 public static void showInputMethod(View view) {
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNamesFragment.java 28 import android.view.LayoutInflater;
29 import android.view.View;
30 import android.view.ViewGroup;
42 private View mAccountNameLabel;
58 public View onCreateView(LayoutInflater inflater, ViewGroup container,
60 final View view = inflateTemplatedView(inflater, container, local
62 mDescription = UiUtilities.getView(view, R.id.account_description);
63 mName = UiUtilities.getView(view, R.id.account_name)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderEditText.java 5 import android.view.KeyEvent;
31 if (event.getKeyCode() == android.view.KeyEvent.KEYCODE_BACK) {
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderEditText.java 5 import android.view.KeyEvent;
31 if (event.getKeyCode() == android.view.KeyEvent.KEYCODE_BACK) {
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
OtherSettingsPopup.java 27 import android.view.View;
28 import android.view.LayoutInflater;
29 import android.view.ViewGroup;
73 public View getView(int position, View convertView, ViewGroup parent) {
79 InLineSettingItem view = (InLineSettingItem) local
82 view.initialize(pref); // no init for restore one
83 view.setSettingChangedListener(OtherSettingsPopup.this);
84 return view;
    [all...]
StackLayout.java 21 import android.view.View;
22 import android.view.ViewGroup;
37 final View child = getChildAt(0);
53 final View child = getChildAt(i);
54 if (child.getVisibility() != View.GONE) {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
WebActivity.java 25 * This activity shows a web view, which loads the {@link #EXTRA_URL} indicated in the starting
59 public boolean shouldOverrideUrlLoading(WebView view, String url) {
61 view.loadUrl(url);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SpellCheckerPreference.java 24 import android.view.View;
25 import android.view.View.OnClickListener;
26 import android.view.textservice.SpellCheckerInfo;
58 private View mPrefLeftButton;
59 private View mSettingsButton;
83 protected void onBindView(View view) {
84 super.onBindView(view);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigUiForSetupWizardXL.java 24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.View.OnFocusChangeListener;
27 import android.view.ViewGroup;
28 import android.view.inputmethod.InputMethodManager;
43 private View mView;
55 * @param parent Parent ViewGroup (typically some layout) holding a view object created by
76 if (mView.findViewById(R.id.security_fields).getVisibility() == View.VISIBLE)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
EnterSubject.java 21 import android.view.inputmethod.EditorInfo;
22 import android.view.inputmethod.InputConnection;
  /packages/apps/UnifiedEmail/src/com/android/mail/drawer/
BlankHeaderDrawerItem.java 19 import android.view.View;
20 import android.view.ViewGroup;
39 * @param convertView A previous view, perhaps null
40 * @param parent the parent of this view
44 public View getView(View convertView, ViewGroup parent) {
45 final View blankHeaderView;
BottomSpaceDrawerItem.java 19 import android.view.View;
20 import android.view.ViewGroup;
39 * @param convertView A previous view, perhaps null
40 * @param parent the parent of this view
44 public View getView(View convertView, ViewGroup parent) {
45 final View blankHeaderView;
WaitViewDrawerItem.java 19 import android.view.View;
20 import android.view.ViewGroup;
37 * Return a view for the 'Waiting for sync' item with the indeterminate progress indicator.
39 * @param convertView a view, possibly null, to be recycled.
40 * @param parent the parent hosting this view.
41 * @return a view for "Waiting for sync..." at given position.
44 public View getView(View convertView, ViewGroup parent) {
  /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)

Completed in 982 milliseconds

<<61626364656667686970>>