Searched defs:view (Results 101 - 125 of 323) sorted by relevance

1234567891011>>

/packages/apps/Contacts/src/com/android/contacts/activities/
H A DJoinContactActivity.java30 import android.view.LayoutInflater;
31 import android.view.MenuItem;
32 import android.view.View;
33 import android.view.View.OnFocusChangeListener;
34 import android.view.inputmethod.InputMethodManager;
193 public void onFocusChange(View view, boolean hasFocus) { argument
194 switch (view.getId()) {
235 private void showInputMethod(View view) { argument
239 if (!imm.showSoftInput(view, 0)) {
/packages/apps/Contacts/src/com/android/contacts/datepicker/
H A DDatePickerDialog.java29 import android.view.LayoutInflater;
30 import android.view.View;
72 * @param view The view associated with this listener.
79 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth); argument
172 View view = inflater.inflate(R.layout.date_picker_dialog, null);
173 setView(view);
174 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
201 public void onDateChanged(DatePicker view, int year, int month, int day) { argument
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailUpdatesFragment.java25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
54 * It assumes the view has a tag of type {@link StreamItemEntry} associated with it.
58 public void onClick(View view) {
59 StreamItemEntry streamItemEntry = (StreamItemEntry) view.getTag();
78 public void onClick(View view) {
79 StreamPhotoTag tag = (StreamPhotoTag) view.getTag();
108 public void onViewCreated(View view, Bundle savedInstanceState) { argument
109 super.onViewCreated(view, savedInstanceStat
[all...]
H A DContactDetailViewPagerAdapter.java19 import android.support.v4.view.PagerAdapter;
20 import android.support.v4.view.ViewPager;
21 import android.view.View;
22 import android.view.ViewGroup;
31 public static final String ABOUT_FRAGMENT_TAG = "view-pager-about-fragment";
32 public static final String UPDATES_FRAGMENT_TAG = "view-pager-updates-fragment";
40 * The initial value for the view count needs to be MAX_FRAGMENT_VIEW_COUNT,
43 * device, the view pager requires the second page to exist immediately on launch).
53 public void setAboutFragmentView(View view) { argument
54 mAboutFragmentView = view;
57 setUpdatesFragmentView(View view) argument
118 isViewFromObject(View view, Object object) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorAnimator.java24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.ViewParent;
70 final View view = viewsToMove.get(i);
71 view.setTranslationY(0.0f);
73 // Remove our target view (if parent is null, we were run several times by quick
121 public void showAddFieldFooter(final View view) { argument
123 if (view.getVisibility() == View.VISIBLE) return;
125 view.setVisibility(View.VISIBLE);
126 view
206 getViewsBelowOf(View view) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListPinnedHeaderView.java26 import android.view.Gravity;
27 import android.view.View;
28 import android.view.ViewGroup;
34 * A custom view for the pinned section header shown at the top of the contact list.
155 // view (ListView).
175 private boolean isViewMeasurable(View view) { argument
176 return (view != null && view.getVisibility() == View.VISIBLE);
H A DEmailAddressListAdapter.java29 import android.view.View;
30 import android.view.ViewGroup;
120 final ContactListItemView view = new ContactListItemView(context, null);
121 view.setUnknownNameText(mUnknownNameText);
122 view.setQuickContactEnabled(isQuickContactEnabled());
123 return view;
128 ContactListItemView view = (ContactListItemView)itemView;
129 bindSectionHeaderAndDivider(view, position);
130 bindName(view, cursor);
131 bindPhoto(view, curso
135 bindEmailAddress(ContactListItemView view, Cursor cursor) argument
148 bindSectionHeaderAndDivider(final ContactListItemView view, int position) argument
166 bindName(final ContactListItemView view, Cursor cursor) argument
170 bindPhoto(final ContactListItemView view, Cursor cursor) argument
[all...]
H A DJoinContactListAdapter.java28 import android.view.LayoutInflater;
29 import android.view.View;
30 import android.view.ViewGroup;
143 View view = inflate(R.layout.join_contact_picker_section_header, parent);
144 ((TextView) view.findViewById(R.id.text)).setText(
146 return view;
149 View view = inflate(R.layout.join_contact_picker_section_header, parent);
150 ((TextView) view.findViewById(R.id.text)).setText(
152 return view;
160 protected void bindHeaderView(View view, in argument
[all...]
H A DLegacyPhoneNumberListAdapter.java26 import android.view.View;
27 import android.view.ViewGroup;
79 final ContactListItemView view = new ContactListItemView(context, null);
80 view.setUnknownNameText(mUnknownNameText);
81 return view;
86 ContactListItemView view = (ContactListItemView)itemView;
87 bindName(view, cursor);
88 bindPhoneNumber(view, cursor);
91 protected void bindName(final ContactListItemView view, Cursor cursor) { argument
92 view
96 bindPhoneNumber(ContactListItemView view, Cursor cursor) argument
[all...]
H A DLegacyPostalAddressListAdapter.java26 import android.view.View;
27 import android.view.ViewGroup;
80 final ContactListItemView view = new ContactListItemView(context, null);
81 view.setUnknownNameText(mUnknownNameText);
82 return view;
87 ContactListItemView view = (ContactListItemView)itemView;
88 bindName(view, cursor);
89 bindPostalAddress(view, cursor);
92 protected void bindName(final ContactListItemView view, Cursor cursor) { argument
93 view
98 bindPostalAddress(ContactListItemView view, Cursor cursor) argument
[all...]
H A DPostalAddressListAdapter.java28 import android.view.View;
29 import android.view.ViewGroup;
110 final ContactListItemView view = new ContactListItemView(context, null);
111 view.setUnknownNameText(mUnknownNameText);
112 view.setQuickContactEnabled(isQuickContactEnabled());
113 return view;
118 ContactListItemView view = (ContactListItemView)itemView;
119 bindSectionHeaderAndDivider(view, position);
120 bindName(view, cursor);
121 bindPhoto(view, curso
125 bindPostalAddress(ContactListItemView view, Cursor cursor) argument
138 bindSectionHeaderAndDivider(final ContactListItemView view, int position) argument
156 bindName(final ContactListItemView view, Cursor cursor) argument
160 bindPhoto(final ContactListItemView view, Cursor cursor) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DPinnedHeaderListDemoActivity.java25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
61 protected void bindHeaderView(View view, int parition, Cursor cursor) { argument
62 TextView headerText = (TextView)view.findViewById(R.id.header_text);
82 View view = inflater.inflate(R.layout.list_section, parent, false);
83 view.setFocusable(false);
84 view.setEnabled(false);
85 bindHeaderView(view, viewIndex, null);
86 return view;
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/detail/
H A DStreamItemAdapterTest.java21 import android.view.View;
66 // There is one extra view: the header.
93 /** Checks that the stream item view has a click listener. */
100 /** Checks that the stream item view does not have a click listener. */
107 /** Checks that the stream item view is clickable. */
119 /** Checks that the stream item view has the given stream item as its tag. */
129 /** Checks that the stream item view has the given stream item as its tag. */
143 public void onClick(View view) { argument
/packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/
H A DSwipeableListView.java24 import android.view.MotionEvent;
25 import android.view.View;
26 import android.view.ViewConfiguration;
120 // find the view under the pointer, accounting for GONE views
138 public View getChildContentView(View view) { argument
139 return view;
168 View view = getChildAt(i-start);
169 getAdapter().getView(i, view, this);
182 public void onSwipe(View view); argument
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DWorldClockAdapter.java22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
189 public View getView(int position, View view, ViewGroup parent) { argument
196 if (view == null) {
197 view = mInflater.inflate(R.layout.world_clock_list_item, parent, false);
200 View rightClock = view.findViewById(R.id.city_right);
201 updateView(view.findViewById(R.id.city_left), (CityObj)mCitiesList[index]);
220 return view;
/packages/apps/Email/src/com/android/email/activity/
H A DMailboxMoveToAdapter.java23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
107 public void bindView(View view, Context context, Cursor cursor) { argument
108 TextView t = (TextView) view;
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupExchange.java29 import android.view.View;
30 import android.view.View.OnClickListener;
113 public void onClick(View view) { argument
114 switch (view.getId()) {
H A DAccountSetupOptions.java32 import android.view.View;
33 import android.view.View.OnClickListener;
185 public void onClick(View view) { argument
186 switch (view.getId()) {
/packages/apps/Email/src/com/android/email/view/
H A DCertificateSelector.java18 package com.android.email.view;
26 import android.view.View;
27 import android.view.View.OnClickListener;
36 * A simple view that can be used to select a certificate from the system {@link KeyChain}.
38 * Host activities must register themselves view {@link #setHostActivity} for this selector to work.
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMovieControllerOverlay.java21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
23 import android.view.View;
24 import android.view.animation.Animation;
25 import android.view.animation.Animation.AnimationListener;
26 import android.view.animation.AnimationUtils;
98 private void startHideAnimation(View view) { argument
99 if (view.getVisibility() == View.VISIBLE) {
100 view.startAnimation(hideAnimation);
H A DPhotoPageBottomControls.java20 import android.view.LayoutInflater;
21 import android.view.View;
22 import android.view.View.OnClickListener;
23 import android.view.ViewGroup;
24 import android.view.animation.AlphaAnimation;
25 import android.view.animation.Animation;
132 public void onClick(View view) { argument
133 if (mContainerVisible && mControlsVisible.get(view).booleanValue()) {
134 mDelegate.onBottomControlClicked(view.getId());
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLViewMock.java82 protected void renderBackground(GLCanvas view) { argument
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DAbstractIndicatorButton.java24 import android.view.MotionEvent;
25 import android.view.View;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
42 public void onShowIndicator(View view, boolean showed); argument
H A DEffectSettingPopup.java26 import android.view.View;
34 // A popup window that shows video effect setting. It has two grid view.
183 public void onItemClick(AdapterView<?> parent, View view, argument
H A DIndicatorControlBar.java25 import android.view.MotionEvent;
26 import android.view.View;
30 * A view that contains the top-level indicator control.
79 public void onClick(View view) { argument

Completed in 293 milliseconds

1234567891011>>