<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
></androidx.recyclerview.widget.RecyclerView>
android:id="@+id/rv_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
></androidx.recyclerview.widget.RecyclerView>
2019-10-13
最贊回答 / qq_請(qǐng)勿打擾_3
是不是 HTTP的問(wèn)題 ? 你只添加了權(quán)限設(shè)置了 但是Android9.0以上是需要設(shè)置
<application<...code...>
2019-10-11
最贊回答 / me在人間
這個(gè)是系統(tǒng)解析xml時(shí)出現(xiàn)錯(cuò)誤,那么說(shuō)明問(wèn)題所在就是xml里的控件聲明有誤。如<View?/>中大家很容易把View寫出小寫view。
2019-08-14
最新回答 / 浪里小神龍
在android后面的版本http協(xié)議已經(jīng)不能用了,得用https協(xié)議,也就是你找個(gè)音樂(lè)的網(wǎng)址是https開(kāi)頭的就行
2019-08-03
最贊回答 / loseboycn
問(wèn)題原因:在api上訪問(wèn)http協(xié)議被認(rèn)為時(shí)不安全解決辦法:1. 在res目錄下創(chuàng)建xml文件夾,在xml下創(chuàng)建network_security_config.xml文件<?xml version="1.0" encoding="utf-8"?><network-security-config>? ? <base-config cleartextTrafficPermitted="true" /></network-security-config>2. 在A...
2019-08-02
圖片加載不出來(lái)解決辦法: 1. 在res目錄下創(chuàng)建xml文件夾,在xml下創(chuàng)建network_security_config.xml文件
2. 在AndroidManifest文件中配置 android:networkSecurityConfig=”@xml/network_security_config”
2. 在AndroidManifest文件中配置 android:networkSecurityConfig=”@xml/network_security_config”
2019-08-02
GridItemDecoration 沒(méi)效果
LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) parent.getLayoutParams();
lp.leftMargin = space;
parent.setLayoutParams(lp);
LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) parent.getLayoutParams();
lp.leftMargin = space;
parent.setLayoutParams(lp);
2019-07-25