gpt4 book ai didi

java - Picasso 在 Android 10 中不工作。为什么?

转载 作者:行者123 更新时间:2023-12-04 09:35:23 25 4
gpt4 key购买 nike

我正在尝试通过一个简单的应用程序从 Picasso 的 URL 中获取图像。我的 MainActivity.java 文件是

'import com.squareup.picasso.Picasso;

public class MainActivity extends AppCompatActivity {

private ImageView iv;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

iv = (ImageView) findViewById(R.id.iv);

Picasso.with(MainActivity.this).load("https://www.simplifiedcoding.net/wp-content/uploads/2015/10/advertise.png").into(iv);
}
}`

我在构建 gradle 中添加了对 Picasso 的依赖:

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
implementation 'com.squareup.picasso:picasso:2.5.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

这是我的 manifest.xml 文件:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.firebaseproject">

<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:usesCleartextTraffic="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

所有这一切之后,当我尝试从 URL 中获取这张图片时,它没有在应用程序中显示任何内容。这是那个的截图 enter image description here

我被困在这里两天了,但在溢出、youtube 和 google 搜索之后找不到任何解决方案。如果有人知道如何解决这个问题,请帮助我。

我在诺基亚 5.1 plus 中使用 android 10 操作系统。任何建议将不胜感激。提前谢谢你。

最佳答案

在通过 Picasso 获取图像时,找到下面的代码打印异常。我使用了与您共享的该库的相同版本。我已经在 Realme 10 操作系统和三星 10 中测试了这段代码。它可以正常工作。

implementation 'com.squareup.picasso:picasso:2.5.2'

在 Java 中,

Picasso.Builder builder = new Picasso.Builder(this);
builder.listener(new Picasso.Listener()
{
@Override
public void onImageLoadFailed(Picasso picasso, Uri uri, Exception exception)
{
exception.printStackTrace();
}
});
builder.build().load("https://www.simplifiedcoding.net/wp-content/uploads/2015/10/advertise.png").into(imageView);

在 Kotlin 中,

val builder = Picasso.Builder(this)
builder.listener(fun(picasso: Picasso, uri: Uri, exception: Exception) {
exception.printStackTrace()
})
builder.build().load("https://www.simplifiedcoding.net/wp-content/uploads/2015/10/advertise.png").into(imageView)

Show image through Picasso

关于java - Picasso 在 Android 10 中不工作。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62618469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com