This repository was archived by the owner on Aug 24, 2024. It is now read-only.

Description
Hi,
I think there is an issue in PopuMenu class :
Rect anchorRect = new Rect(location[0], location[1],
location[0] + anchor.getWidth(),
location[0] + anchor.getHeight());
should be
Rect anchorRect = new Rect(location[0], location[1],
location[0] + anchor.getWidth(),
location[1] + anchor.getHeight());
What do you think ?
Thanks btw for the work :)