Custom dialog too small

后端 未结 11 2426
轻奢々
轻奢々 2020-12-10 10:53

I have an android activity that implements a custom dialog.The application is running ok but the dialog is too small,i want to display a bigger dialog.How can i achieve this

11条回答
  •  一整个雨季
    2020-12-10 11:37

    put below line in onCreate

    setStyle(DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth);
    

    original answer

提交回复
热议问题