Looking at the part:
runOnUiThread(new Runnable() {
I have the problem:
The method runOnUiThread(new Runnable(){}) is undef
You have to setOnClickListener that you haven't set in your code like
setOnClickListener
Button confirm = (Button) dialog.findViewById(R.id.btn_confirm); confirm.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { your call to method... } });