是的你可以。
在适配器中添加新字段:
private Context mContext;
在适配器的构造函数中,添加以下代码:
public AdapterName(......, Context context) {
//your code.
this.mContext = context;
}
在适配器的getView(...)中:
Button btn = (Button) convertView.findViewById(yourButtonId);
btn.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
if (mContext instanceof YourActivityName) {
((YourActivityName)mContext).yourDesiredMethod();
}
}
});
用您自己的类名替换,您可以在其中看到代码,活动等。
如果您需要使用同一适配器进行多个活动,则:
创建一个界面
public interface IMethodCaller {
void yourDesiredMethod();
}
在您需要具有此方法调用功能的活动中实现此接口。
然后在Adapter getView()中调用:
Button btn = (Button) convertView.findViewById(yourButtonId);
btn.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
if (mContext instanceof IMethodCaller) {
((IMethodCaller) mContext).yourDesiredMethod();
}
}
});
大功告成 如果您需要将此适配器用于不需要此调用机制的活动,则代码将不会执行(如果检查失败)。