我在ExpandableListview
内ScrollView
,我知道这不好,但我也有,显示整个列表的唯一解决方案是使用layoutParams
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, ListViewData.length());
这个解决方案很好,但是我无法确定Params
中应该给出的正确高度,那么有没有办法从数组的大小知道实际大小
修改 我提出了一个解决方案,每当我扩展一组列表时我会改变高度以适应新的geight
答案 0 :(得分:14)
试试这个,基于listview使用Child。 setListViewHeightBasedOnChildren()
这会将您的listview子项设置为基于
public class Utils {
public static void setListViewHeightBasedOnChildren(ListView listView) {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
// pre-condition
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0);
totalHeight += listItem.getMeasuredHeight();
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
listView.requestLayout();
}
}
答案 1 :(得分:10)
在这种情况下,您的ListView实际上是不必要的。您也可以遍历适配器的项目,只需将它们添加到ScrollView中的垂直LinearLayout。
如果您不想更改大量代码:
将ListView.setAdapter
替换为
LinearLayout ll; //this should be the vertical LinearLayout that you substituted the listview with
for(int i=0;i<adapter.getCount();i++) {
View v = adapter.getView(position, null, null);
ll.addView(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
}
如果您已在View v = adapter.getView(position, null, null);
之后使用OnItemClickListener添加
final int position = i;
v.setOnClickListener(new OnClickListener() {
public onClick(View v) {
yourOnItemClickListener.onItemClick(null, v, position, 0);
}
});
在这种情况下,你不必担心高度上的误算。
答案 2 :(得分:3)
试试这个,它适用于我同样的问题
public static boolean setListViewHeightBasedOnItems(ListView listView) {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter != null) {
int numberOfItems = listAdapter.getCount();
// Get total height of all items.
int totalItemsHeight = 0;
for (int itemPos = 0; itemPos < numberOfItems; itemPos++) {
View item = listAdapter.getView(itemPos, null, listView);
item.measure(0, 0);
totalItemsHeight += item.getMeasuredHeight();
}
// Get total height of all item dividers.
int totalDividersHeight = listView.getDividerHeight() *
(numberOfItems - 1);
// Set list height.
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalItemsHeight + totalDividersHeight;
listView.setLayoutParams(params);
listView.requestLayout();
return true;
} else {
return false;
}}
在视图上调用requestLayout()方法,因为某些内容发生了更改,导致其布局失效 - 强制重绘。
答案 3 :(得分:0)
您可以在尺寸文件中为不同的屏幕尺寸设置变量,然后将其乘以您想要显示的列表项目数。