Picasso Load Image Failed and App Crashing
问题 I'm new to Android development, I'm trying to load image from url using Picasso, but it failed when I navigate to the Picasso loading activity. Below is the code that i use for: //Declaring Variable ImageView ImageView1 = (ImageView)findViewById(R.id.forthImage); Context context = this; //In onCreate() Picasso.with(context).load("http://postimg.org/image/wjidfl5pd/").into(ImageView1); In my XML: <ImageView android:id="@+id/forthImage" android:layout_width="150dp" android:layout_height="150dp"