android - AlertDialog broken layout on some devices -


i'm experiencing problems following approach create alertdialog:

alertdialog.builder alertdialog = new alertdialog.builder(this)     .settitle(r.string.deletion_title)     .setmessage(r.string.options_deleteexternalconfirm)     .setpositivebutton(r.string.yes, new dialoginterface.onclicklistener() {             public void onclick(dialoginterface dialog, int which) {                 utils.deleteexternaldir();                 dialog.cancel();             }         })     .setnegativebutton(r.string.no, null); alertdialog.show(); 

while dialog looks ok on devices, has layout problems on others (namely galaxy s4 - gt-i9505 android 5.0.1), see attached picture:broken layout on galaxy s4 . what reason , how can fix it?

(other adding padding custom dialog when build.product.equals("gt-i9505") since there might phones out there have same issue unknown me)

it turned out problem android:fitssystemwindows , android lollipop in this answer.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -