我在cardScrollView中有一组卡片。我想设置这些卡的布局。我已经发布了我迄今为止所做的代码,这是相当不完整的。我被困在可以设置卡片视图的位置。我见过用于livecards的setViews()方法,但对于Card类,只有一个toView()方法。关于我如何设置xml布局到卡片的任何输入?
for (int i = 0; i < subscribesource.size(); i++) {
Card card = new Card(this);
identifysource = subscribesource.get(i);
System.out.println("cardtext" + identifysource);
card.setText(identifysource);
LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View view = inflater.inflate( R.layout.activity_main, null );
View cardview = card.toView();
sourceCard.add(card);
}
答案 0 :(得分:0)
你听说过CardBuilder吗?这是XE21中的新功能。它包括EMBED_INSIDE类,可帮助您包含所需的自定义布局。
答案 1 :(得分:-2)