Searched defs:view (Results 1 - 25 of 323) sorted by last modified time

1234567891011>>

/packages/screensavers/WebView/src/com/android/dreams/web/
H A DScreensaver.java36 import android.view.MotionEvent;
37 import android.view.View;
38 import android.view.WindowManager;
39 import android.view.animation.AccelerateInterpolator;
40 import android.view.animation.DecelerateInterpolator;
51 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperActivity.java29 import android.view.LayoutInflater;
30 import android.view.View;
31 import android.view.ViewGroup;
107 View view = generateView(getActivity().getLayoutInflater(), null);
112 builder.setView(view, contentInset, contentInset, contentInset, contentInset);
120 * generate a view to display. Otherwise, a dialog will be created in
142 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
H A DDownloadAdapter.java29 import android.view.LayoutInflater;
30 import android.view.View;
31 import android.view.ViewGroup;
84 final DownloadItem view = (DownloadItem) LayoutInflater.from(mDownloadList)
86 view.setDownloadListObj(mDownloadList);
87 return view;
200 TextView view = (TextView) parent.findViewById(textViewId);
201 view.setText(text);
212 public void bindView(View view, Context context, Cursor cursor) { argument
213 bindView(view, curso
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DRingtonePickerActivity.java29 import android.view.View;
274 public void onItemSelected(AdapterView parent, View view, int position, long id) { argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DAccessibilityUtils.java25 import android.support.v4.view.accessibility.AccessibilityEventCompat;
27 import android.view.MotionEvent;
28 import android.view.View;
29 import android.view.ViewGroup;
30 import android.view.ViewParent;
31 import android.view.accessibility.AccessibilityEvent;
32 import android.view.accessibility.AccessibilityManager;
33 import android.view.inputmethod.EditorInfo;
146 * @param view The source view
149 announceForAccessibility(View view, CharSequence text) argument
190 onStartInputViewInternal(View view, EditorInfo editorInfo, boolean restarting) argument
[all...]
H A DAccessibleKeyboardViewProxy.java21 import android.support.v4.view.AccessibilityDelegateCompat;
22 import android.support.v4.view.ViewCompat;
23 import android.support.v4.view.accessibility.AccessibilityEventCompat;
24 import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
25 import android.view.MotionEvent;
26 import android.view.View;
69 * Sets the view wrapped by this proxy.
71 * @param view The view to wrap.
73 public void setView(MainKeyboardView view) { argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMoreKeysKeyboard.java21 import android.view.View;
308 private static int getMaxKeyWidth(final KeyboardView view, final Key parentKey, argument
310 final int padding = (int)(view.getResources()
313 final Paint paint = view.newDefaultLabelPaint();
314 paint.setTypeface(parentKey.selectTypeface(view.mKeyDrawParams));
315 paint.setTextSize(parentKey.selectMoreKeyTextSize(view.mKeyDrawParams));
321 final int width = (int)view.getLabelWidth(label, paint) + padding;
H A DViewLayoutUtils.java19 import android.view.View;
20 import android.view.ViewGroup;
21 import android.view.ViewGroup.MarginLayoutParams;
43 public static void placeViewAt(View view, int x, int y, int w, int h) { argument
44 final ViewGroup.LayoutParams lp = view.getLayoutParams();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DSuddenJumpingTouchEventHandler.java21 import android.view.MotionEvent;
54 public SuddenJumpingTouchEventHandler(Context context, ProcessMotionEvent view) { argument
55 mView = view;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java50 import android.view.KeyCharacterMap;
51 import android.view.KeyEvent;
52 import android.view.View;
53 import android.view.ViewGroup.LayoutParams;
54 import android.view.Window;
55 import android.view.WindowManager;
56 import android.view.inputmethod.CompletionInfo;
57 import android.view.inputmethod.CorrectionInfo;
58 import android.view.inputmethod.EditorInfo;
59 import android.view
607 setInputView(final View view) argument
622 setCandidatesView(final View view) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DMoreSuggestions.java56 final int minWidth, final int maxRow, final MoreSuggestionsView view) {
58 final Resources res = view.getResources();
63 final Paint paint = view.newDefaultLabelPaint();
71 mWidths[pos] = (int)view.getLabelWidth(word, paint) + padding;
55 layout(final SuggestedWords suggestions, final int fromPos, final int maxWidth, final int minWidth, final int maxRow, final MoreSuggestionsView view) argument
H A DSuggestionStripView.java42 import android.view.GestureDetector;
43 import android.view.Gravity;
44 import android.view.LayoutInflater;
45 import android.view.MotionEvent;
46 import android.view.View;
47 import android.view.View.OnClickListener;
48 import android.view.View.OnLongClickListener;
49 import android.view.ViewGroup;
749 public boolean onLongClick(View view) { argument
852 public void onClick(View view) { argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DResearchLogger.java45 import android.view.KeyEvent;
46 import android.view.MotionEvent;
47 import android.view.Window;
48 import android.view.WindowManager;
49 import android.view.inputmethod.CompletionInfo;
50 import android.view.inputmethod.CorrectionInfo;
51 import android.view.inputmethod.EditorInfo;
52 import android.view.inputmethod.InputConnection;
615 public void paintIndicator(KeyboardView view, Paint paint, Canvas canvas, int width, argument
621 if (IS_SHOWING_INDICATOR && isAllowedToLog() && view instanceo
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DCandidatesViewManager.java22 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 */
77 * Initialize the candidates view
163 displayDialog(View view, final WnnWord word) argument
[all...]
H A DTextCandidates1LineViewManager.java35 import android.view.KeyEvent;
36 import android.view.LayoutInflater;
37 import android.view.MotionEvent;
38 import android.view.View;
39 import android.view.ViewGroup;
40 import android.view.View.OnClickListener;
41 import android.view.View.OnLongClickListener;
51 * The default candidates view manager using {@link android.widget.EditText}.
72 /** Body view of the candidates list */
80 /** Candidate view */
702 getViewLeftOnScreen(View view) argument
[all...]
H A DTextCandidatesViewManager.java42 import android.view.Gravity;
43 import android.view.KeyEvent;
44 import android.view.MotionEvent;
45 import android.view.View;
46 import android.view.ViewGroup;
47 import android.view.View.OnClickListener;
48 import android.view.View.OnLongClickListener;
49 import android.view.GestureDetector;
50 import android.view.LayoutInflater;
60 * The default candidates view manage
1900 getViewTopOnScreen(View view) argument
[all...]
/packages/providers/ApplicationsProvider/src/com/android/providers/applications/
H A DApplicationsAdapter.java25 import android.view.View;
40 public void bindView(View view, Context context, Cursor cursor) { argument
41 ImageView icon1 = (ImageView) view.findViewById(R.id.icon1);
42 TextView text1 = (TextView) view.findViewById(R.id.text1);
/packages/apps/Tag/src/com/android/apps/tag/
H A DTagViewer.java30 import android.view.LayoutInflater;
31 import android.view.View;
32 import android.view.View.OnClickListener;
116 public void onClick(View view) { argument
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DUriRecord.java39 import android.view.LayoutInflater;
40 import android.view.View;
41 import android.view.View.OnClickListener;
42 import android.view.ViewGroup;
108 public void onClick(View view) { argument
109 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag();
H A DVCardRecord.java52 import android.view.LayoutInflater;
53 import android.view.View;
54 import android.view.View.OnClickListener;
55 import android.view.ViewGroup;
165 public void onClick(View view) { argument
166 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag();
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DExportOptionsDialog.java25 import android.view.LayoutInflater;
26 import android.view.View;
105 * @param view The dialog content view
108 private static void prepareContent(View view, int aspectRatio) { argument
109 final Context context = view.getContext();
119 final Spinner sizeSpinner = (Spinner)view.findViewById(R.id.export_option_size);
130 final Spinner qualitySpinner = (Spinner)view.findViewById(R.id.export_option_quality);
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DEditorRelativeLayout.java23 import android.view.View;
51 public void onClick(View view) { argument
H A DHandleView.java26 import android.view.MotionEvent;
30 * The view that represents a resize handle
49 * @param view The view
51 public void onMoveBegin(HandleView view); argument
56 * @param view The view
58 * @param delta The offset relative to the left of the view
60 public boolean onMove(HandleView view, int left, int delta); argument
65 * @param view Th
69 onMoveEnd(HandleView view, int left, int delta) argument
[all...]
H A DItemMoveGestureListener.java19 import android.view.MotionEvent;
20 import android.view.View;
29 * @param view The view
34 public boolean onMoveBegin(View view, MotionEvent e); argument
39 * @param view The view
45 public boolean onMove(View view, MotionEvent e1, MotionEvent e2); argument
50 * @param view The view
52 onMoveEnd(View view) argument
[all...]
H A DItemSimpleGestureListener.java19 import android.view.MotionEvent;
20 import android.view.View;
36 * @param view The view which received the event
42 public boolean onSingleTapConfirmed(View view, int area, MotionEvent e); argument
48 * @param view The view which received the event
52 public void onLongPress(View view, MotionEvent e); argument

Completed in 326 milliseconds

1234567891011>>