This is possible to change theme my dialog in code? This is my dialog:
Dialog dialog = new Dialog(ActionBarMain.this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.log_in_dialog_view);
dialog.show();
Dialog has a secondary constructor that takes a Theme:
http://developer.android.com/reference/android/app/Dialog.html#Dialog(android.content.Context, int)
try: