Answers for "draw textview programmatically android studio"

2

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);
}
Posted by: Guest on November-08-2020

Code answers related to "draw textview programmatically android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language