最佳答案
要实现这一目标,您必须执行以下操作::
原文链接:/android/430655.html>创建具有单个LinearLayout的垂直ScrollView.
>现在在此Linearlayout中创建水平ListViews,如下例所示:
因此,这将允许您在屏幕中垂直滚动以及在每个ListView中水平滚动.
例如.
编辑:将动态ListView添加到LinearLayout.
LinearLayout ll=(LinearLayout)findViewById(R.id.id_given_in_the_XML_file);
ListView lv=new ListView(Activityname.this);
.
.
.
Do All ListView Processing Here
.
.
.
lv.setAdapater(adapter);
ll.addView(lv);