单击减号删除按钮时出现以下错误:
找不到方法 android.view.View.getParentForAccessibility,引用自方法 com.wassap.main.UserFragment$12.onClick
相关代码:
/////////////////////// minus remove button click
imgRemove.setOnClickListener(new OnClickListener()
{
@SuppressLint("NewApi")
public void onClick(View vv)
{
View parent = (View) vv.getParentForAccessibility();
}
});