All Projects → lupidan → Popoverview

lupidan / Popoverview

Licence: lgpl-3.0
A Popover Controller for Android Tablets. It's an easy solution to simulate an iOS UIPopoverController

Programming Languages

java
68154 projects - #9 most used programming language

PopoverView

A Popover Controller for Android Tablets. It's an easy solution to simulate an iOS UIPopoverController Base example 9patch image comes from http://android9patch.blogspot.com.es/ :)

Showing a popover controller is as easy as this

//get root layout
RelativeLayout rootView = (RelativeLayout)findViewById(R.id.rootLayout);
	
PopoverView popoverView = new PopoverView(this, R.layout.popover_showed_view);
popoverView.setContentSizeForViewInPopover(new Point(320, 340));
popoverView.setDelegate(this);
popoverView.showPopoverFromRectInViewGroup(rootView, PopoverView.getFrameForView(v), PopoverView.PopoverArrowDirectionAny, true);

You can set more things as well, such as the drawable arrows or the drawable background of the popover view, as well as the fade time It also has an interface to notice when the popover appears or dismiss.

Screenshot 1 Screenshot 2 Screenshot 3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].