how to generate dynamic textview in android?

后端 未结 2 731
无人共我
无人共我 2020-12-12 07:24

something like this i want

for(i=0; i<10; i++) {
    Textview tx[i] = new TextView(this);
    tx[i].setText(\"Data\")
    TableRow tr[i] = new TableRow(t         


        
相关标签:
2条回答
  • 2020-12-12 08:12
    TextView[] tx = new TextView[10];
    TableRow[] tr = new TableRow[10];
    for(i=0; i<10; i++) {
        tx[i] = new TextView(this);
        tx[i].setText("Data")
        tr[i] = new TableRow(this);
        tr[i].addView(tx[i]);
        // and then adding table row in tablelayout
    }
    
    0 讨论(0)
  • 2020-12-12 08:14
        TextView[] tx = new TextView[10];
        TableRow[] tr = new TableRow[10];
        for(i=0; i<10; i++) {
            tx[i] = new TextView(this);
            tx[i].setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
            tx[i].setText("Data")
            tr[i] = new TableRow(this);
            tr[i].setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
            tr[i].addView(tx[i]);
            // and then adding table row in tablelayout
        }
    
    0 讨论(0)
提交回复
热议问题