标签: java android
我在listview中有一个按钮,需要在点击时更新数据库。所以我必须将OnClickListener放在bindView类的CursorAdapter方法中。所以,我无法调用
OnClickListener
bindView
CursorAdapter
int rowsAffected = getContentResolver().update(mCurrentPetUri, values, null, null);
由于它是一个静态上下文,我也不能使用Context.getContentResolver()。
Context.getContentResolver()
有解决方法吗?