Lines Matching defs:view

28 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) {
192 mAlert.setView(view);
196 * Set the view to display in that dialog, specifying the spacing to appear around that
197 * view.
199 * @param view The view to show in the content area of the dialog
200 * @param viewSpacingLeft Extra space to appear to the left of {@code view}
201 * @param viewSpacingTop Extra space to appear above {@code view}
202 * @param viewSpacingRight Extra space to appear to the right of {@code view}
203 * @param viewSpacingBottom Extra space to appear below {@code view}
205 public void setView(View view, int viewSpacingLeft, int viewSpacingTop, int viewSpacingRight,
207 mAlert.setView(view, viewSpacingLeft, viewSpacingTop, viewSpacingRight, viewSpacingBottom);
412 * Set the title using the custom view {@code customTitleView}. The
418 * @param customTitleView The custom view to use as the title.
838 * Set a custom view to be the contents of the Dialog. If the supplied view is an instance
841 * @param view The view to use as the contents of the Dialog.
845 public Builder setView(View view) {
846 P.mView = view;
852 * Set a custom view to be the contents of the Dialog, specifying the
853 * spacing to appear around that view. If the supplied view is an
856 * @param view The view to use as the contents of the Dialog.
857 * @param viewSpacingLeft Spacing between the left edge of the view and
859 * @param viewSpacingTop Spacing between the top edge of the view and
861 * @param viewSpacingRight Spacing between the right edge of the view
863 * @param viewSpacingBottom Spacing between the bottom edge of the view
870 * be able to put padding around the view.
873 public Builder setView(View view, int viewSpacingLeft, int viewSpacingTop,
875 P.mView = view;