我有这样的线性布局:
<LinearLayout
android:id="@+id/quizViewTwo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/answer_layoutTwo"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical"/>
</LinearLayout>
answer_layoutTwo
现在,由于一些限制,我正在以编程方式将列表视图添加到
ListView ansList = new ListView(Test.this);
ansList.setAdapter(adapter);
ansCellLayout.addView(ansList);// here ansCellLayout is answer_layoutTwo
现在列表视图没有包装它只显示第一项并且它们具有滚动视图。
我尝试添加布局参数也尝试增加重量并且它不起作用。
编辑
我尝试添加ansList.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, 600));
它工作正常,但如果我给 FillParent 它不会工作:(