I have an XML layout file, but the text is more than fits into the screen size. What do I need to do in order to make a ScrollView?
To scroll data in text view you can use this to your text view. and add and for anything other layout you can just add scroll view on layout as people are saying above.
/** android:scrollable=true at textview in xml layout.
TextView txtScroll = (TextView) findViewById(R.id.txt1);
txtScroll.setMovementMethod(new ScrollingMovementMethod());
*//