获取并设置ListView高度的方法

 

01public void setListViewHeightBasedOnChildren(ListView listView) { 
02    ListAdapter listAdapter = listView.getAdapter();  
03    if (listAdapter == null) { 
04        return
05    
06 
07    int totalHeight = 0
08    for (int i = 0; i < listAdapter.getCount(); i++) { 
09        View listItem = listAdapter.getView(i, null, listView); 
10        listItem.measure(00); 
11        totalHeight += listItem.getMeasuredHeight(); 
12    
13 
14    ViewGroup.LayoutParams params = listView.getLayoutParams(); 
15    params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1)); 
16    ((MarginLayoutParams)params).setMargins(10101010);
17    listView.setLayoutParams(params); 
18}
 

[2].[代码] XML布局 跳至 [1] [2] [3] [4]

01<ScrollView
02        android:layout_width="fill_parent"
03        android:layout_height="fill_parent"
04        android:fadingEdge = "none"
05        android:background="#FFF4F4F4"
06        xmlns:android="http://schemas.android.com/apk/res/android"
07        >
08   <LinearLayout
09    android:gravity="center_horizontal"
10    android:orientation="vertical"
11    android:background="#fff4f4f4"
12    android:layout_width="fill_parent"
13    android:layout_height="fill_parent"
14    >
15    <ListView
16        android:id="@+id/moreItemsListView"
17        android:layout_width="fill_parent"
18        android:layout_height="fill_parent"
19        android:cacheColorHint="#FFF4F4F4"
20        android:dividerHeight="0.0dip"
21        android:fadingEdge="none"
22        />
23   </LinearLayout>
24</ScrollView>
 

[3].[图片] scrollview_listview.jpg 跳至 [1] [2] [3] [4]

 

转载于:https://www.cnblogs.com/hudabing/p/3185880.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值