如何在 android 工作室中添加毕加索库

how to add picasso library in android studio

我收到这个错误,请帮助我。

     Error:A problem occurred configuring project ':app'.
> Cannot evaluate module picasso-master : Configuration with name 'default' not found.

到目前为止完成:

1. download the picaso 

2.unzip the zip folder

 3.Under project section created  one directory called as lib and add the unzip file

4. In settings-gradle

    include ':app'
include ':libs:picasso-master'

   wrote these lines.

5. after that in project structure module dependency  add the picasso library


6. rebuild and clean

7.

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile project(':library:picasso-master')
    compile 'com.squareup.picasso:picasso:2.5.0'
}

我也在构建 gradle 文件中添加了这些行。但同样的错误来了。我现在该怎么办。请帮助我。

你能告诉我如何添加毕加索库吗?

将此添加到 build.gradle 中的依赖项:

dependencies {
 implementation 'com.squareup.picasso:picasso:2.71828'
  ...

可以找到最新版本here

确保您已连接到 Internet。当您同步 Gradle 时,所有相关文件都将添加到您的项目中

看看你的库文件夹,你刚刚添加的库应该在那里。

希望对你有帮助 或者 Ctrl + Alt + Shift + S => select Dependencies 选项卡并找到你需要的(看我的图片)

在依赖项中添加 Picasso 库

dependencies {
       ...
       implementation 'com.squareup.picasso:picasso:2.71828'
       ...
    }

同步项目 在布局中创建一个图像视图

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true">
</ImageView>

在Manifest文件中添加Internet权限

<uses-permission android:name="android.permission.INTERNET" />

//初始化ImageView

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

//从下面url加载图像到imageView

Picasso.get()
   .load("YOUR IMAGE URL HERE")
   .into(imageView);

依赖关系

dependencies {

   implementation 'com.squareup.picasso:picasso:2.71828'

}

//Java 图像加载到 imageView 的代码

Picasso.get().load(werURL).into(imageView);