a method is defined, returning an unknown (to me) type:
Code:
return new AlertDialog.Builder(this)
what is the type which is being returned here?
I want to do something like this:
Code:
xxx alertdlg = new AlertDialog.Builder(this);
and I don't know what type to substitute for "xxx".