You can use Picasso library with Circular imageview to show image from url
add this 2 file to gradle
compile ‘com.squareup.picasso:picasso:2.5.2’
compile ‘de.hdodenhof:circleimageview:2.1.0’
then add this line to the xml
1 2 3 4 5 6 7 8 |
<de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/profile_image" android:layout_width="96dp" android:layout_height="96dp" android:src="@drawable/profile" app:civ_border_width="2dp" app:civ_border_color="#FF000000"/> |
Finally add these lines in onCreate
1 2 |
CircleImageView image = (CircleImageView) findViewById(R.id.profile_image); Picasso.with(this).load("image url here")).noFade().into(image); |
that’s it.. now you can able to see image from online inside circular image view