項(xiàng)目源碼地址:https://github.com/lgd8981289/IMoocMusic
2019-03-25
補(bǔ)充,換了音樂鏈接也不行http://m801.music.126.net/20190324211802/aa378cff68eb955d54dcec1a04aaf759/jdyyaac/0e0e/0152/5109/9da9e8aff5683427e9b8fc6702897a3e.m4a
這個(gè)圖片在瀏覽器單獨(dú)訪問的時(shí)候能加載出來,但是放到項(xiàng)目里邊,就加載不出來了
2019-03-24
自定義RecyclerView,重寫onMeasure()方法
protected void onMeasure(int widthSpec, int heightSpec) {
int measuredHeight = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthSpec, measuredHeight);
}
簡單實(shí)現(xiàn)ScrollView嵌套R(shí)ecyclerView或ListView高度問題
protected void onMeasure(int widthSpec, int heightSpec) {
int measuredHeight = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthSpec, measuredHeight);
}
簡單實(shí)現(xiàn)ScrollView嵌套R(shí)ecyclerView或ListView高度問題
2019-03-21