1
Just add before the dialog.setContentView(R.layout.seulayout)
and right after instantiating your dialog, the following line: dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
1
1
Just add before the dialog.setContentView(R.layout.seulayout)
and right after instantiating your dialog, the following line: dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
Browser other questions tagged android android-layout
You are not signed in. Login or sign up in order to post.
Perfect! Thank you very much.
– crnmn