import android.widget.*; import android.view.*; import android.content.Context; public class main { public static View main(Context context) { ScrollView sv = new ScrollView(context); LinearLayout ll = new LinearLayout(context); ll.setOrientation(ll.VERTICAL); TextView tv = new TextView(context); tv.setText("TextView in ScrollView!"); ll.addView(tv); tv = new TextView(context); tv.setText("TextView 2 in ScrollView!"); ll.addView(tv); sv.addView(ll); return sv; } }