android - Large text in default AlertDialog freezes screen -


i want display large message default alertdialog following code.

public void showconditions(view v) {     final alertdialog alertdialog = new alertdialog.builder(this).create();      alertdialog.settitle("policy terms");     alertdialog.setmessage("very large text...");     alertdialog.setbutton("ok", new dialoginterface.onclicklistener() {         public void onclick(dialoginterface dialog, int which) { alertdialog.cancel(); }     });     alertdialog.show(); } 


code working fine shows dialog after 2 or 3 seconds, when pressed button , freezes screen too.

i tried display text new activity , happens same:
- freeze screen , takes 2 seconds display it.

i tried show loader(progressbar) inform user being open soon.
- happens same.

i can't find solution.

i appreciate ideas.
thanks.


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 -