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