how to create textview programmatically in android
String[] textArray = {"One", "Two", "Three", "Four"}; LinearLayout linearLayout = new LinearLayout(this); setContentView(linearLayout); linearLayout.setOrientation(LinearLayout.VERTICAL); for( int i = 0; i < textArray.length; i++ ) { TextView textView = new TextView(this); textView.setText(textArray[i]); linearLayout.addView(textView); }