Я добавляю некоторые пользовательские компоненты в LinearLayout внутри CardView.Первый компонент добавлен отлично, но следующий не прорисован.ArrayList компонентов имеет различные элементы (в моем примере их два):
LinearLayout.LayoutParams rlParams=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
rlParams.setMargins(10,10,10,20);
CardView cv2=new CardView(StatisticsActivity.this);
cv2.setElevation(3);
cv2.setUseCompatPadding(true);
LinearLayout rl2=new LinearLayout(StatisticsActivity.this);
cv2.addView(rl2,rlParams);
for(int i=0;i<scoreTeams.size();i++){
TeamScoreComponent teamScoreComponent=new TeamScoreComponent(StatisticsActivity.this,scoreTeams.get(i).getTeam(),scoreTeams.get(i).getScore());
rl2.addView(teamScoreComponent);
}
ll.addView(cv2);
Здесь у ScoreTeams ArrayList есть два слота, которые я тестировал), но отображается только первый.ll является LinearLayout.
Это TeamScoreComponent:
public class TeamScoreComponent extends RelativeLayout {
private TextView teamTV;
private TextView scoreTV;
private int score;
private String team;
private Context ctx;
private String[] colores;
public TeamScoreComponent(Context context,String team, int score) {
super(context);
this.score=score;
this.team=team;
this.ctx=context;
inicializar();
}
private void inicializar() {
String infService = Context.LAYOUT_INFLATER_SERVICE;
LayoutInflater li =
(LayoutInflater)getContext().getSystemService(infService);
li.inflate(R.layout.team_score_layout, this, true);
scoreTV=findViewById(R.id.score);
teamTV=findViewById(R.id.teamname);
scoreTV.setText(String.valueOf(score));
teamTV.setText(team);
teamTV.setBackgroundColor(ctx.getColor(R.color.gris));
colores=ctx.getResources().getStringArray(R.array.colores);
setRandomBackgroundColor();
}
private void setRandomBackgroundColor(){
Random rnd = new Random();
scoreTV.setBackgroundColor(Color.parseColor(colores[rnd.nextInt(colores.length)]));
}
}
Кто-нибудь знает, что я делаю плохо?