put your text in scrollview inside the xml layout file. try something like:
AlertDialog.Builder b = new AlertDialog.Builder();
b.setMessage("Scary Legal Stuff");
b.setView(View.inflate(R.layout.scary_legal_scrollview),null));
Probably the best place for this would be onCreateDialog in your activity.
source
share