Searched defs:view (Results 1 - 25 of 386) sorted by path

1234567891011>>

/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java19 import android.view.View;
20 import android.view.ViewGroup;
21 import android.view.ViewParent;
22 import android.view.ViewTreeObserver;
23 import android.view.animation.AccelerateDecelerateInterpolator;
24 import android.view.animation.DecelerateInterpolator;
85 * Using LayoutTransition at multiple levels of a nested view hierarchy may not work due to the
199 * view to see whether the layout changes the bounds of that view. If so, the animation
558 * target view
1141 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1156 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java23 import android.view.Gravity;
24 import android.view.View;
25 import android.view.ViewDebug;
26 import android.view.ViewGroup;
27 import android.view.ViewGroup.MarginLayoutParams;
28 import android.view.Window;
38 * android.view.Window#requestFeature requestFeature(FEATURE_ACTION_BAR)} or by declaring it in a
47 * using an {@link android.view.ActionMode}. For example, when the user selects one or more items in
50 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
127 * Show the custom view i
146 setCustomView(View view) argument
166 setCustomView(View view, LayoutParams layoutParams) argument
778 setCustomView(View view) argument
[all...]
H A DActivity.java59 import android.view.ActionMode;
60 import android.view.ContextMenu;
61 import android.view.ContextMenu.ContextMenuInfo;
62 import android.view.ContextThemeWrapper;
63 import android.view.KeyEvent;
64 import android.view.LayoutInflater;
65 import android.view.Menu;
66 import android.view.MenuInflater;
67 import android.view.MenuItem;
68 import android.view
1854 setContentView(View view) argument
1870 setContentView(View view, ViewGroup.LayoutParams params) argument
1882 addContentView(View view, ViewGroup.LayoutParams params) argument
2460 onPreparePanel(int featureId, View view, Menu menu) argument
2695 registerForContextMenu(View view) argument
2706 unregisterForContextMenu(View view) argument
2717 openContextMenu(View view) argument
[all...]
H A DAlertDialog.java28 import android.view.ContextThemeWrapper;
29 import android.view.KeyEvent;
30 import android.view.MotionEvent;
31 import android.view.View;
32 import android.view.WindowManager;
41 * want to display a more complex view, look up the FrameLayout called "custom"
42 * and add your view to it:
163 * Gets the list view used in the dialog.
189 * Set the view to display in that dialog.
191 public void setView(View view) { argument
205 setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight, int viewSpacingBottom) argument
845 setView(View view) argument
873 setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight, int viewSpacingBottom) argument
[all...]
H A DDatePickerDialog.java25 import android.view.LayoutInflater;
26 import android.view.View;
52 * @param view The view associated with this listener.
58 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth); argument
102 View view = inflater.inflate(R.layout.date_picker_dialog, null);
103 setView(view);
104 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
116 public void onDateChanged(DatePicker view, int year, argument
124 * @return The calendar view
[all...]
H A DDialog.java33 import android.view.ActionMode;
34 import android.view.ContextMenu;
35 import android.view.ContextMenu.ContextMenuInfo;
36 import android.view.ContextThemeWrapper;
37 import android.view.Gravity;
38 import android.view.KeyEvent;
39 import android.view.LayoutInflater;
40 import android.view.Menu;
41 import android.view.MenuItem;
42 import android.view
479 setContentView(View view) argument
491 setContentView(View view, ViewGroup.LayoutParams params) argument
502 addContentView(View view, ViewGroup.LayoutParams params) argument
811 onPreparePanel(int featureId, View view, Menu menu) argument
912 registerForContextMenu(View view) argument
919 unregisterForContextMenu(View view) argument
926 openContextMenu(View view) argument
[all...]
H A DFragment.java32 import android.view.ContextMenu;
33 import android.view.ContextMenu.ContextMenuInfo;
34 import android.view.LayoutInflater;
35 import android.view.Menu;
36 import android.view.MenuInflater;
37 import android.view.MenuItem;
38 import android.view.View;
39 import android.view.View.OnCreateContextMenuListener;
40 import android.view.ViewGroup;
203 * <li> {@link #onCreateView} creates and returns the view hierarch
1111 onViewCreated(View view, Bundle savedInstanceState) argument
1420 registerForContextMenu(View view) argument
1431 unregisterForContextMenu(View view) argument
[all...]
H A DLauncherActivity.java35 import android.view.LayoutInflater;
36 import android.view.View;
37 import android.view.ViewGroup;
38 import android.view.Window;
39 import android.view.View.OnClickListener;
151 View view;
153 view = mInflater.inflate(
156 view = convertView;
158 bindView(view, mActivitiesList.get(position));
159 return view;
162 bindView(View view, ListItem item) argument
[all...]
H A DListFragment.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.view.animation.AnimationUtils;
42 * ListFragment has a default layout that consists of a single list view.
44 * your own view hierarchy from {@link #onCreateView}.
45 * To do this, your view hierarchy <em>must</em> contain a ListView object with the
48 * Optionally, your view hierarchy can contain another view object of any type to
49 * display when the list view i
201 onViewCreated(View view, Bundle savedInstanceState) argument
[all...]
H A DTimePickerDialog.java25 import android.view.LayoutInflater;
26 import android.view.View;
46 * @param view The view associated with this listener.
50 void onTimeSet(TimePicker view, int hourOfDay, int minute); argument
69 * @param is24HourView Whether this is a 24 hour view, or AM/PM.
83 * @param is24HourView Whether this is a 24 hour view, or AM/PM.
105 View view = inflater.inflate(R.layout.time_picker_dialog, null);
106 setView(view);
107 mTimePicker = (TimePicker) view
129 onTimeChanged(TimePicker view, int hourOfDay, int minute) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java37 import android.view.Gravity;
38 import android.view.LayoutInflater;
39 import android.view.View;
86 * Create a host view. Uses default fade animations.
93 * Create a host view. Uses specified animations when pushing
104 // We want to segregate the view ids within AppWidgets to prevent
105 // problems when those ids collide with view ids in the AppWidgetHost.
110 * Set the AppWidget that will be displayed by this view. This method also adds default padding
220 * Update the AppWidgetProviderInfo for this view, and reset it to the
240 // Capture the old view int
413 prepareView(View view) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java23 import android.view.View;
24 import android.view.ViewGroup;
109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java19 import com.android.internal.view.menu.MenuBuilder;
20 import com.android.internal.view.menu.MenuPopupHelper;
24 import android.view.ActionMode;
25 import android.view.Menu;
26 import android.view.MenuInflater;
27 import android.view.MenuItem;
28 import android.view.View;
29 import android.view.accessibility.AccessibilityEvent;
127 public void setCustomView(View view) { argument
128 // Custom view i
[all...]
H A DInputMethodService.java19 import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
20 import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT;
41 import android.view.KeyCharacterMap;
42 import android.view.KeyEvent;
43 import android.view.LayoutInflater;
44 import android.view.MotionEvent;
45 import android.view.View;
46 import android.view.ViewGroup;
47 import android.view.ViewTreeObserver;
48 import android.view
1147 setExtractView(View view) argument
1177 setCandidatesView(View view) argument
1190 setInputView(View view) argument
[all...]
/frameworks/base/core/java/android/pim/
H A DContactsAsyncHelper.java32 import android.view.View;
72 public ImageView view; field in class:ContactsAsyncHelper.WorkerArgs
274 args.view = imageView;
314 args.view.setVisibility(View.VISIBLE);
315 args.view.setImageDrawable((Drawable) args.result);
322 args.view.setVisibility(View.VISIBLE);
323 args.view.setImageResource(args.defaultResource);
335 args.listener.onImageLoadComplete(msg.what, args.cookie, args.view,
/frameworks/base/core/java/android/preference/
H A DCheckBoxPreference.java22 import android.view.View;
58 protected void onBindView(View view) { argument
59 super.onBindView(view);
61 View checkboxView = view.findViewById(com.android.internal.R.id.checkbox);
67 syncSummaryView(view);
H A DDialogPreference.java32 import android.view.LayoutInflater;
33 import android.view.View;
34 import android.view.Window;
35 import android.view.WindowManager;
328 * Creates the content view for the dialog (if a custom content view is
349 * @param view The content View of the dialog, if it is custom.
351 protected void onBindDialogView(View view) { argument
352 View dialogMessageView = view.findViewById(com.android.internal.R.id.message);
H A DEditTextPreference.java27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.view.ViewParent;
62 * The preference framework and view framework both have an 'enabled'
64 * the preference framework, but it was also given to the view framework.
106 protected void onBindDialogView(View view) { argument
107 super.onBindDialogView(view);
113 if (oldParent != view) {
117 onAddEditTextToDialogView(view, editText);
122 * Adds the EditText widget of this preference to the dialog's view
[all...]
H A DPreference.java31 import android.view.AbsSavedState;
32 import android.view.KeyEvent;
33 import android.view.LayoutInflater;
34 import android.view.View;
35 import android.view.ViewGroup;
52 * subclass of {@link Preference}, similar to the view hierarchy and layouts.
496 * @param view The View that shows this Preference.
499 protected void onBindView(View view) { argument
500 TextView textView = (TextView) view.findViewById(com.android.internal.R.id.title);
505 textView = (TextView) view
[all...]
H A DPreferenceActivity.java38 import android.view.LayoutInflater;
39 import android.view.View;
40 import android.view.View.OnClickListener;
41 import android.view.ViewGroup;
258 View view;
261 view = mInflater.inflate(com.android.internal.R.layout.preference_header_item,
264 holder.icon = (ImageView) view.findViewById(com.android.internal.R.id.icon);
265 holder.title = (TextView) view.findViewById(com.android.internal.R.id.title);
266 holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary);
267 view
865 setListFooter(View view) argument
[all...]
H A DPreferenceScreen.java27 import android.view.View;
28 import android.view.Window;
133 * @param listView The list view to attach to.
187 * as we would with any other activity or view.
193 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
H A DSeekBarDialogPreference.java23 import android.view.View;
53 protected void onBindDialogView(View view) { argument
54 super.onBindDialogView(view);
56 final ImageView iconView = (ImageView) view.findViewById(android.R.id.icon);
H A DSeekBarPreference.java24 import android.view.KeyEvent;
25 import android.view.View;
58 protected void onBindView(View view) { argument
59 super.onBindView(view);
60 SeekBar seekBar = (SeekBar) view.findViewById(
H A DSwitchPreference.java22 import android.view.View;
101 protected void onBindView(View view) { argument
102 super.onBindView(view);
104 View checkableView = view.findViewById(com.android.internal.R.id.switchWidget);
118 syncSummaryView(view);
H A DTwoStatePreference.java25 import android.view.View;
26 import android.view.accessibility.AccessibilityEvent;
27 import android.view.accessibility.AccessibilityManager;
188 void sendAccessibilityEvent(View view) { argument
189 // Since the view is still not attached we create, populate,
196 view.onInitializeAccessibilityEvent(event);
197 view.dispatchPopulateAccessibilityEvent(event);
204 * Sync a summary view contained within view's subhierarchy with the correct summary text.
205 * @param view Vie
207 syncSummaryView(View view) argument
[all...]

Completed in 207 milliseconds

1234567891011>>