I asked another question about custom AlertDialog here.
Then I clicked my way to this custom AlertDialog (found here):
import android.app.AlertDialog;
im
why don't you add a title (a text view) in R.layout.param and also you can add buttons and then everything will be shown
override on create method of altertdialog and call following methods in overridden method oncreate
setContentView(R.layout.paus);
this will solve your problem.
setContentView() must be called before setTitle() ...