0

これは、いくつかのアイテムを含むテーブル ビューを表示する必要があるコードの一部ですが、何も表示されていません。

TableLayout tableView = (TableLayout) findViewById(R.id.tableLayoutUsers);
          TableRow tr = new TableRow(this);
          LayoutParams rowLayoutParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
          tr.setLayoutParams(rowLayoutParams);

          TextView name = new TextView(this);
          name.setText(userClass.getUsername());
          LayoutParams dateLayParam = new LayoutParams(LayoutParams.WRAP_CONTENT); // , LayoutParams.FILL_PARENT);
          name.setLayoutParams(dateLayParam);

          tr.addView(name);
          tableView.addView(tr, new TableLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
          tr.setClickable(true);

どうしたの?ありがとう

4

2 に答える 2