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);
}
//java,set textview text android studio,2021/09.23
TextView textView;
textView = findViewById(R.id.textView); //in your OnCreate() method
textView.setText("Hello World");
TextView textView = new TextView(this);