Use view to inflate multiple times

前端 未结 4 1007
Happy的楠姐
Happy的楠姐 2021-01-11 19:57

I have a some problem regarding inflating and re-using the same TextView.
Its like its trying to overwrite the same textview over and over again or something and it can

4条回答
  •  执笔经年
    2021-01-11 20:08

    You're never actually adding any Views to your Activity. You're creating new TableRows and adding TextViews to them, but you're never adding the rows to anything. Assuming you have a TableLayout in R.layout.days_monday_inflate, you should first get a reference to that view (TableLayout layout = (TableLayout)mainLayout.findViewById(R.id.my_table_layout_id)) and then add each row to that TableLayout:

    TableLayout layout = (TableLayout)mainLayout.findViewById(R.id.my_table_layout_id);
    
    for(int i = 0; i < 10; i++) {
        row = new TableRow(this);
        View layout_number = inflater.inflate(R.layout.inflate_number, layout, false);
        TextView number = (TextView) layout_number.findViewById(R.id.Number);
        number.setTag(i);
        number.setText(Integer.toString(i));
        row.addView(number);
        layout.addView(row);
    }
    

    Although I would recommend setting up your layout fully in XML if at all possible, unless needed dynamically. Also, if you're only adding one TextView per row, you're better off just using a LinearLayout, I would suggest.

提交回复
热议问题