補充,換了音樂鏈接也不行http://m801.music.126.net/20190324211802/aa378cff68eb955d54dcec1a04aaf759/jdyyaac/0e0e/0152/5109/9da9e8aff5683427e9b8fc6702897a3e.m4a
自定義RecyclerView,重寫onMeasure()方法
protected void onMeasure(int widthSpec, int heightSpec) {
int measuredHeight = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthSpec, measuredHeight);
}
簡單實現ScrollView嵌套RecyclerView或ListView高度問題
protected void onMeasure(int widthSpec, int heightSpec) {
int measuredHeight = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthSpec, measuredHeight);
}
簡單實現ScrollView嵌套RecyclerView或ListView高度問題
2019-03-21