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: . 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
Post a Comment