ScrollView 와 ListView 가 함께 사용되는 문제 해결
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
두 번째 단계: listView 각 Item을 계산하는 방법:
public void setListViewHeightBasedOnChildren(ListView listView) {
// ListView Adapter
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) { // listAdapter.getCount()
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0); // View
totalHeight += listItem.getMeasuredHeight(); //
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight
+ (listView.getDividerHeight() * (listAdapter.getCount() - 1));
// listView.getDividerHeight()
// params.height ListView
listView.setLayoutParams(params);
}
3단계: listview 어댑터를 추가한 후 높이를 설정하면 됩니다.
listView.setAdapter(adapter);
new ListViewUtil().setListViewHeightBasedOnChildren(listView);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
스크롤하면 이미지가 확대되는 녀석~(※이 기사는, storyboard에 스크롤 뷰를 붙이는 기초 지식이 있는 사람을 전제로 하고 있습니다.) 이번에는 스크롤 뷰를 위로 스크롤하면(아래로 당기면) 이미지(헤더 이미지)가 확대되는 녀석을 구현하고 싶습니...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.