if (positiveButtonClickListener != null) {
((Button) layout.findViewById(R.id.positiveButton))
.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
new changeAsyncTask().execute("mark"); /////////
positiveButtonClickListener.onClick(dialog,
DialogInterface.BUTTON_POSITIVE);
}
});
}
在里面放入异步线程new changeAsyncTask().execute("mark")为什么不可以.求指导