毕加索没有从网址加载图片

时间:2017-09-12 03:56:12

标签: android picasso

所以我试图简单地使用Picasso将图像从url(有效)加载到imageView。我已经通过gradle添加了Picasso库,我添加了两个:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET" /> 
正如许多其他用户指出的那样,

到我的代码。   我没有任何错误,即使在10秒以上也没有做任何事情。 这是我的Java方法:

ImageView image;
@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    image=(ImageView)findViewById(R.id.image);
    Picasso.with(getApplicationContext()).load("http://i.imgur.com/DvpvklR.png").into(image);
}

和我的活动XML:

<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="com.example.benhouse.testproj.MainActivity">


<RelativeLayout
    android:layout_width="0dp"
    android:layout_height="0dp"
    tools:layout_editor_absoluteY="8dp"
    tools:layout_editor_absoluteX="8dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:id="@+id/image"/>
</RelativeLayout>

有关如何使其发挥作用的任何想法? 我确定我在某个地方犯了一个明显的错误。

4 个答案:

答案 0 :(得分:0)

如果你想使用约束布局并使图像居中,你需要在下面的约束中使用你的相对布局。

    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"

答案 1 :(得分:0)

我建议在这里尝试两件事。

1.提供图像占位符以确保毕加索工作正常。

Picasso.with(context)
       .load(imageUrl)
       .placeholder(R.drawable.image_name)

2.在清单中两次写入use-permission。 [我知道这可能听起来很疯狂,但有一些版本的成绩/工作室有这个错误]

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

答案 2 :(得分:0)

您的父亲相对布局高度和宽度为0dp,这就是为什么childLayout(ImageView)无法显示图像。因此,您需要设置相对布局高度和宽度wrap_content或match_parent。那样:

<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="com.example.benhouse.testproj.MainActivity">


<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:layout_editor_absoluteY="8dp"
    tools:layout_editor_absoluteX="8dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:id="@+id/image"/>
</RelativeLayout>

答案 3 :(得分:0)

尝试在清单文件的应用程序标记中使用android:usesCleartextTraffic="true"