android - "should not happen: no rect-based-test nodes found" error is thrown when click on an embedded svg shape -


i got error when tap on embedded svg shape. load html file activity extends droidgap. in html file, embedded svg , set onclick event 1 shape in svg. problem is, in emulator when click on shape, worked fine, when switched real device throws me error should not happen: no rect-based-test nodes found. can help?

use in class extends webview:

@override   public boolean ontouchevent(motionevent event) {      if (event.getaction() == motionevent.action_down){          int temp_scrolly = getscrolly();         scrollto(getscrollx(), getscrolly() + 1);         scrollto(getscrollx(), temp_scrolly);      }      return super.ontouchevent(event); } 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -