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

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java26 import android.view.View;
202 // Cannot set content view until we know that mPendingRequest is not null, otherwise
239 public void onCancelButtonClicked(View view) { argument
243 public void onOkButtonClicked(View view) { argument
498 * Overrides the description text view for the picker activity if specified by the intent.
/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
223 * view to see whether the layout changes the bounds of that view. If so, the animation
703 * target view
1451 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1466 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
788 setCustomView(View view) argument
[all...]
H A DActivity.java61 import android.view.ActionMode;
62 import android.view.ContextMenu;
63 import android.view.ContextMenu.ContextMenuInfo;
64 import android.view.ContextThemeWrapper;
65 import android.view.KeyEvent;
66 import android.view.LayoutInflater;
67 import android.view.Menu;
68 import android.view.MenuInflater;
69 import android.view.MenuItem;
70 import android.view
1900 setContentView(View view) argument
1916 setContentView(View view, ViewGroup.LayoutParams params) argument
1928 addContentView(View view, ViewGroup.LayoutParams params) argument
2506 onPreparePanel(int featureId, View view, Menu menu) argument
2856 registerForContextMenu(View view) argument
2867 unregisterForContextMenu(View view) argument
2878 openContextMenu(View view) argument
4792 dumpViewHierarchy(String prefix, PrintWriter writer, 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:
164 * Gets the list view used in the dialog.
190 * Set the view to display in that dialog.
192 public void setView(View view) { argument
206 setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight, int viewSpacingBottom) argument
863 setView(View view) argument
891 setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight, int viewSpacingBottom) argument
[all...]
H A DDatePickerDialog.java24 import android.view.LayoutInflater;
25 import android.view.View;
58 * @param view The view associated with this listener.
64 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth); argument
108 View view = inflater.inflate(R.layout.date_picker_dialog, null);
109 setView(view);
110 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
119 public void onDateChanged(DatePicker view, int year, argument
128 * @return The calendar view
[all...]
H A DDialog.java34 import android.view.ActionMode;
35 import android.view.ContextMenu;
36 import android.view.ContextMenu.ContextMenuInfo;
37 import android.view.ContextThemeWrapper;
38 import android.view.Gravity;
39 import android.view.KeyEvent;
40 import android.view.LayoutInflater;
41 import android.view.Menu;
42 import android.view.MenuItem;
43 import android.view
481 setContentView(View view) argument
493 setContentView(View view, ViewGroup.LayoutParams params) argument
504 addContentView(View view, ViewGroup.LayoutParams params) argument
813 onPreparePanel(int featureId, View view, Menu menu) argument
914 registerForContextMenu(View view) argument
921 unregisterForContextMenu(View view) argument
928 openContextMenu(View view) argument
[all...]
H A DFragment.java33 import android.view.ContextMenu;
34 import android.view.ContextMenu.ContextMenuInfo;
35 import android.view.LayoutInflater;
36 import android.view.Menu;
37 import android.view.MenuInflater;
38 import android.view.MenuItem;
39 import android.view.View;
40 import android.view.View.OnCreateContextMenuListener;
41 import android.view.ViewGroup;
206 * <li> {@link #onCreateView} creates and returns the view hierarch
1226 onViewCreated(View view, Bundle savedInstanceState) argument
1526 registerForContextMenu(View view) argument
1537 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.
103 View view = inflater.inflate(R.layout.time_picker_dialog, null);
104 setView(view);
105 mTimePicker = (TimePicker) view
123 onTimeChanged(TimePicker view, int hourOfDay, int minute) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java38 import android.view.Gravity;
39 import android.view.LayoutInflater;
40 import android.view.View;
41 import android.view.accessibility.AccessibilityNodeInfo;
90 * Create a host view. Uses default fade animations.
105 * Create a host view. Uses specified animations when pushing
116 // We want to segregate the view ids within AppWidgets to prevent
117 // problems when those ids collide with view ids in the AppWidgetHost.
133 * Set the AppWidget that will be displayed by this view. This method also adds default padding
324 * Update the AppWidgetProviderInfo for this view, an
518 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;
133 public void setCustomView(View view) { argument
134 // 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;
42 import android.view.KeyCharacterMap;
43 import android.view.KeyEvent;
44 import android.view.LayoutInflater;
45 import android.view.MotionEvent;
46 import android.view.View;
47 import android.view.ViewGroup;
48 import android.view.ViewTreeObserver;
49 import android.view
1172 setExtractView(View view) argument
1202 setCandidatesView(View view) argument
1215 setInputView(View view) argument
[all...]
/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;
330 * Creates the content view for the dialog (if a custom content view is
351 * @param view The content View of the dialog, if it is custom.
353 protected void onBindDialogView(View view) { argument
354 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.
503 * @param view The View that shows this Preference.
506 protected void onBindView(View view) { argument
507 final TextView titleView = (TextView) view.findViewById(
519 final TextView summaryView = (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;
265 View view;
268 view = mInflater.inflate(com.android.internal.R.layout.preference_header_item,
271 holder.icon = (ImageView) view.findViewById(com.android.internal.R.id.icon);
272 holder.title = (TextView) view.findViewById(com.android.internal.R.id.title);
273 holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary);
274 view
880 setListFooter(View view) argument
[all...]
H A DPreferenceScreen.java27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.Window;
141 * @param listView The list view to attach to.
200 * as we would with any other activity or view.
206 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;
194 void sendAccessibilityEvent(View view) { argument
195 // Since the view is still not attached we create, populate,
202 view.onInitializeAccessibilityEvent(event);
203 view.dispatchPopulateAccessibilityEvent(event);
210 * Sync a summary view contained within view's subhierarchy with the correct summary text.
211 * @param view Vie
213 syncSummaryView(View view) argument
[all...]

Completed in 216 milliseconds

1234567891011>>