setCenterLocation
Opened this issue · 2 comments
GoogleCodeExporter commented
When calling the setCenterLocation, the menu is being drawn at the correct
position, however for some positions, the menu is not being shown entirely.
Original issue reported on code.google.com by veit.man...@gmail.com
on 17 Jul 2012 at 11:50
GoogleCodeExporter commented
Same problem here. A part of the menu is missing if a certain radius is
exceeded.
In landscape mode also only one half of the menu V1 is drawn.
Original comment by Meistrow...@googlemail.com
on 13 Jun 2013 at 8:33
GoogleCodeExporter commented
For me, what solved the problem was to manually track the menu state and call
the draw(Canvas cancas) method of the menu in the onDraw(Canvas canvas) of my
view.
Example:
if(m_PieMenuForApplication.isActivated())
{
m_PieMenuForApplication.draw(canvas);
}
Hope this helps.
Bests.
Original comment by veit.man...@gmail.com
on 11 Sep 2013 at 7:00