如何在单个活动中动态创建多个listview,请提供任何代码....
答案 0 :(得分:1)
并排创建2个线性布局,将方向称为水平(给布局提供id),在代码中动态创建列表视图,并将这2个列表视图附加到布局中。
喜欢,
Listview lv1 = new ListView();
ListView lv2 = new ListView();
// get reference to your layouts
LinearLayout lL1 = (LinearLayout) findViewById(R.id.layoutId1);
LinearLayout lL2 = (LinearLayout) findViewById(R.id.layoutId2);
// attach the ListView objects to the LinearLayouts
lL1.addview(lv1);
lL2.addview(lv2);
这应该让你开始。