Could not find method android.view.View.getParentForAccessibility -


getting following error onclick of minus remove button:

could not find method android.view.view.getparentforaccessibility, referenced method com.wassap.main.userfragment$12.onclick

relevant code:

/////////////////////// minus remove button click     imgremove.setonclicklistener(new onclicklistener()      {      @suppresslint("newapi")     public void onclick(view vv)          {     view parent = (view) vv.getparentforaccessibility();     }      }); 

getparentforaccessibility available since android 16. need device @ least api level run it


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -