Android ScrollView 嵌套 ListView 问题

Android ListView About 857 words

自定义ListView,重写onMeasure方法

int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);

public class MyListView extends ListView {  
        public MyListView(Context context) {  
                super(context);  
        }  
        public MyListView(Context context, AttributeSet attrs) {  
                super(context, attrs);  
        }  
        public MyListView(Context context, AttributeSet attrs, int defStyle) {  
                super(context, attrs, defStyle);  
        }  
        @Override  
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
                int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,  
                                MeasureSpec.AT_MOST);  
                super.onMeasure(widthMeasureSpec, expandSpec);  
        }  
}
Views: 1,682 · Posted: 2019-04-09

————        END        ————

Give me a Star, Thanks:)

https://github.com/fendoudebb/LiteNote

扫描下方二维码关注公众号和小程序↓↓↓

扫描下方二维码关注公众号和小程序↓↓↓


Today On History
Browsing Refresh