Custom Dialog Dialog dialog = new Dialog(this); dialog.setContentView(R.layout.dialog); dialog.show(); Custom dialoğunuzu Full Screen yapmak için aşağıdaki kodu yazmanız yeterli.. Dialog dialog = new Dialog(this, android.R.style.Theme_Light_NoTitleBar_Fullscreen); dialog.setContentView(R.layout.dialog); dialog.show();
Okumaya devam …