qland20 / radial-menu-widget

Automatically exported from code.google.com/p/radial-menu-widget
0 stars 0 forks source link

setCenterLocation #1

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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 9 years ago
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 9 years ago
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