博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 布局文件 ScrollView 中的 listView item 显示不全解决方案
阅读量:6158 次
发布时间:2019-06-21

本文共 746 字,大约阅读时间需要 2 分钟。

import android.content.Context; import android.util.AttributeSet; import android.widget.ListView; /** * Created by wanqi on 15-7-20. */ public class ScrollListView extends ListView {
public ScrollListView(Context context, AttributeSet attrs) {
super(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
//根据模式计算每个child的高度和宽度 int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); } }

       在xml文件中应用 ;

 

<com.cs.ronghui.list.MyListView  

android:id="@+id/procutsugID"
android:layout_width="fill_parent"

android:layout_height="wrap_content"

本文转自wanqi博客园博客,原文链接http://www.cnblogs.com/wanqieddy/p/4660820.html,如需转载请自行联系原作者

你可能感兴趣的文章
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
linux后台运行程序
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
登记申请汇总
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>