Searched defs:view (Results 176 - 200 of 323) sorted by relevance

1234567891011>>

/packages/apps/Email/src/com/android/email/activity/
H A DMessageListItemCoordinates.java25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.View.MeasureSpec;
28 import android.view.ViewGroup;
29 import android.view.ViewParent;
36 * (eg, checkmark, star, subject, sender, labels, etc.) It will inflate a view,
38 * to easily improve performance by creating custom view while still defining
95 // Cache to save Coordinates based on view width.
110 * Returns the mode of the header view (Wide/Normal/Narrow) given the its
124 // Choose the correct mode based on view widt
174 getX(View view) argument
187 getY(View view) argument
203 getWidth(View view, boolean includeMargins) argument
214 getHeight(View view, boolean includeMargins) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DStateTransitionAnimation.java19 import android.view.animation.AccelerateInterpolator;
20 import android.view.animation.DecelerateInterpolator;
21 import android.view.animation.Interpolator;
146 private void applyOldTexture(GLView view, GLCanvas canvas, float alpha, float scale, boolean clear) { argument
149 if (clear) canvas.clearBuffer(view.getBackgroundColor());
152 int xOffset = view.getWidth() / 2;
153 int yOffset = view.getHeight() / 2;
160 public void applyBackground(GLView view, GLCanvas canvas) { argument
162 applyOldTexture(view, canvas, mCurrentBackgroundAlpha, mCurrentBackgroundScale, true);
166 public void applyContentTransform(GLView view, GLCanva argument
175 applyOverlay(GLView view, GLCanvas canvas) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DSinglePhotoDataAdapter.java57 AbstractGalleryActivity activity, PhotoView view, MediaItem item) {
61 mPhotoView = Utils.checkNotNull(view);
56 SinglePhotoDataAdapter( AbstractGalleryActivity activity, PhotoView view, MediaItem item) argument
/packages/apps/KeyChain/src/com/android/keychain/
H A DKeyChainActivity.java34 import android.view.LayoutInflater;
35 import android.view.View;
36 import android.view.ViewGroup;
170 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
290 @Override public View getView(final int adapterPosition, View view, ViewGroup parent) { argument
292 if (view == null) {
294 view = inflater.inflate(R.layout.cert_item, parent, false);
296 holder.mAliasTextView = (TextView) view.findViewById(R.id.cert_item_alias);
297 holder.mSubjectTextView = (TextView) view.findViewById(R.id.cert_item_subject);
298 holder.mRadioButton = (RadioButton) view
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DModePicker.java28 import android.view.View;
29 import android.view.animation.Animation;
30 import android.view.animation.Animation.AnimationListener;
31 import android.view.animation.AnimationUtils;
158 public void onClick(View view) { argument
159 if (view == mCurrentModeFrame) {
165 if (view == mModeSelectionIcon[i] && (mCurrentMode != i)) {
217 private void highlightView(ImageView view, boolean enabled) { argument
219 view.clearColorFilter();
221 view
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DSecondLevelIndicatorControlBar.java26 import android.view.MotionEvent;
27 import android.view.View;
31 * A view that contains camera setting indicators which are spread over a
68 public void onClick(View view) { argument
90 private void dispatchRelativeTouchEvent(View view, MotionEvent event) { argument
91 event.offsetLocation(-view.getLeft(), -view.getTop());
92 view.dispatchTouchEvent(event);
93 event.offsetLocation(view.getLeft(), view
157 onShowIndicator(View view, boolean showed) argument
[all...]
H A DSharePopup.java34 import android.view.LayoutInflater;
35 import android.view.MotionEvent;
36 import android.view.View;
37 import android.view.ViewGroup;
38 import android.view.ViewGroup.LayoutParams;
39 import android.view.WindowManager;
64 // A view that contains a list of application icons and the share view.
68 // A rotated view that contains the thumbnail and the play icon.
93 public boolean setViewValue(final View view, fina
275 onItemClick(AdapterView<?> parent, View view, int index, long id) argument
[all...]
H A DZoomControlWheel.java28 import android.view.MotionEvent;
29 import android.view.View;
32 * A view that contains camera zoom control and its layout. In addition to the
122 private void layoutIcon(View view, double radian) { argument
128 int width = view.getMeasuredWidth();
129 int height = view.getMeasuredHeight();
130 view.layout(x - width / 2, y - height / 2, x + width / 2,
/packages/apps/Mms/src/com/android/mms/ui/
H A DRecipientsEditor.java37 import android.view.ContextMenu.ContextMenuInfo;
38 import android.view.MotionEvent;
39 import android.view.View;
40 import android.view.inputmethod.EditorInfo;
129 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
130 super.onItemClick(parent, view, position, id);
H A DSlideshowPresenter.java53 // Since only the original thread that created a view hierarchy can touch
58 public SlideshowPresenter(Context context, ViewInterface view, Model model) { argument
59 super(context, view, model);
63 if (view instanceof AdaptableSlideViewInterface) {
64 ((AdaptableSlideViewInterface) view).setOnSizeChangedListener(
120 * @param view
123 protected void presentSlide(SlideViewInterface view, SlideModel model) { argument
124 view.reset();
128 presentRegionMedia(view, (RegionMediaModel) media, true);
130 presentAudio(view, (AudioMode
138 presentRegionMedia(SlideViewInterface view, RegionMediaModel rMedia, boolean dataChanged) argument
150 presentAudio(SlideViewInterface view, AudioModel audio, boolean dataChanged) argument
169 presentText(SlideViewInterface view, TextModel text, RegionModel r, boolean dataChanged) argument
190 presentImage(SlideViewInterface view, ImageModel image, RegionModel r, boolean dataChanged) argument
222 presentVideo(SlideViewInterface view, VideoModel video, RegionModel r, boolean dataChanged) argument
[all...]
/packages/apps/Phone/src/com/android/phone/
H A DRespondViaSmsManager.java41 import android.view.MenuItem;
42 import android.view.View;
221 View view, // The TextView that was clicked
220 onItemClick(AdapterView<?> parent, View view, int position, long id) argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DCorpusSelectionDialog.java26 import android.view.KeyEvent;
27 import android.view.Menu;
28 import android.view.MotionEvent;
29 import android.view.View;
30 import android.view.Window;
31 import android.view.WindowManager;
190 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DCorporaAdapter.java27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.ViewGroup;
133 CorpusView view = (CorpusView) convertView;
134 if (view == null) {
135 view = createView(parent);
139 bindView(view, corpus);
140 return view;
143 protected void bindView(CorpusView view, Corpus corpus) { argument
148 view
[all...]
H A DDefaultSuggestionView.java36 import android.view.View;
146 * Sets the drawable in an image view, makes sure the view is only visible if there
174 public AsyncIcon(ImageView view) { argument
175 mView = view;
/packages/apps/Settings/src/com/android/settings/
H A DBrightnessPreference.java34 import android.view.View;
107 protected void onBindDialogView(View view) { argument
108 super.onBindDialogView(view);
110 mSeekBar = getSeekBar(view);
115 mCheckBox = (CheckBox)view.findViewById(R.id.automatic_mode);
H A DDateTimeSettings.java187 public void onDateSet(DatePicker view, int year, int month, int day) { argument
196 public void onTimeSet(TimePicker view, int hourOfDay, int minute) { argument
H A DDeviceAdminSettings.java35 import android.view.LayoutInflater;
36 import android.view.View;
37 import android.view.ViewGroup;
177 public void bindView(View view, int position) { argument
179 ViewHolder vh = (ViewHolder) view.getTag();
H A DProxySelector.java38 import android.view.LayoutInflater;
39 import android.view.View;
40 import android.view.View.OnClickListener;
41 import android.view.View.OnFocusChangeListener;
42 import android.view.ViewGroup;
136 private void initView(View view) { argument
137 mHostnameField = (EditText)view.findViewById(R.id.hostname);
140 mPortField = (EditText)view.findViewById(R.id.port);
144 mExclusionListField = (EditText)view.findViewById(R.id.exclusionlist);
147 mOKButton = (Button)view
[all...]
H A DRingerVolumePreference.java42 import android.view.KeyEvent;
43 import android.view.View;
44 import android.view.View.OnClickListener;
160 protected void onBindDialogView(View view) { argument
161 super.onBindDialogView(view);
164 SeekBar seekBar = (SeekBar) view.findViewById(SEEKBAR_ID[i]);
177 ImageView checkbox = (ImageView) view.findViewById(CHECKBOX_VIEW_ID[i]);
207 View hideSection = view.findViewById(id);
H A DUsageStats.java40 import android.view.LayoutInflater;
41 import android.view.View;
42 import android.view.ViewGroup;
240 public void onItemSelected(AdapterView<?> parent, View view, int position, argument
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DInputMethodPreference.java34 import android.view.View;
35 import android.view.View.OnClickListener;
36 import android.view.View.OnLongClickListener;
37 import android.view.inputmethod.InputMethodInfo;
38 import android.view.inputmethod.InputMethodManager;
39 import android.view.inputmethod.InputMethodSubtype;
101 protected void onBindView(View view) { argument
102 super.onBindView(view);
103 mInputMethodPref = view.findViewById(R.id.inputmethod_pref);
105 mInputMethodSettingsButton = (ImageView)view
[all...]
H A DUserDictionaryAddWordContents.java26 import android.view.View;
61 /* package */ UserDictionaryAddWordContents(final View view, final Bundle args) { argument
62 mWordEditText = (EditText)view.findViewById(R.id.user_dictionary_add_word_text);
63 mShortcutEditText = (EditText)view.findViewById(R.id.user_dictionary_add_shortcut);
/packages/apps/Settings/src/com/android/settings/quicklaunch/
H A DBookmarkPicker.java29 import android.view.Menu;
30 import android.view.MenuItem;
31 import android.view.View;
221 * from a key to its value (the value can be any object--the view
319 public boolean setViewValue(View view, Object data, String textRepresentation) { argument
320 if (view.getId() == R.id.icon) {
323 ((ImageView) view).setImageDrawable(icon);
H A DQuickLaunchSettings.java37 import android.view.KeyCharacterMap;
38 import android.view.KeyEvent;
39 import android.view.View;
207 public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) { argument
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java30 import android.view.View;
31 import android.view.WindowManager;
208 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument

Completed in 405 milliseconds

1234567891011>>