Android uidesign-popupwindow display position settings

Source: Internet
Author: User

When you click a button and popupwindow pops up, the lower-left corner of popupwindow is aligned with the button by default. However, if popupwindow is the same, it will be misplaced, especially on tablets of different sizes, the misplacement error is not generally unreliable, but Android only provides the following methods to set the position of popupwindow.

  • Showasdropdown (view anchor, int xoff, int yoff) defines the offset based on the reference point in the lower left corner of anchor.
  • Showasdropdown (Android. View. View) uses the lower-left corner of anchor as the reference point and does not offset
  • Showatlocation (view parent, int gravity, int X, int y) uses parent as the main container, gravity as the alignment reference point, and defines the offset.

The showasdropdwon method is recommended.

This is to center the popupwindow display, so you need to define the horizontal displacement offset (similar to other positions)

IntXoff = Window. getwidth ()/2-parent.getwidth ()/2; Window. Update (); window. showasdropdown (parent,-Xoff, 0 );

:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.