補充,換了音樂鏈接也不行http://m801.music.126.net/20190324211802/aa378cff68eb955d54dcec1a04aaf759/jdyyaac/0e0e/0152/5109/9da9e8aff5683427e9b8fc6702897a3e.m4a
最贊回答 / oliver_hjf
我是用了Android P模擬器,結果不能播放音樂,報了MediaPlayer錯誤(1,-2147e83648),我在Android Manifest的application里面添加了下面一條,就成功了
android:usesCleartextTraffic="true"
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);
}
簡單實現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