Я пытаюсь отобразить изображение в ImageView с помощью библиотеки Пикассо, но я не знаю, почему изображение не загружается.Не могли бы вы мне помочь?
В build.gradle (зависимости):
implementation 'com.squareup.picasso:picasso:2.71828'
В MainActivity.java:
package com.example.imageview;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import com.squareup.picasso.Picasso;
public class MainActivity extends AppCompatActivity {
ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.imageView);
Picasso.get().load("http://i.imgur.com/DvpvklR.png").into(imageView);
}
}
В AndroidManifest.xml: (Я не знаю, действительно ли это необходимо)
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
В Activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="154dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="200dp"
android:src="#A0A" />
</RelativeLayout>
</android.support.constraint.ConstraintLayout>
Я хотел бы просто отобразить изображение с URL-адресом, как в Пикассодокументация.Я что-то забыл?Или что-то изменить в настройках?
Спасибо!