Langsung ke konten utama

Postingan

Menampilkan postingan dengan label Glide Android

Circle Image View using Glide and Picasso in Android

Hello guys, In this tutorial we will learn how to create Circular Image View in Android without using any additional Libraries such as CircleImageView . // This Library is very Popular and Widely used for Circle Image View compile 'de.hdodenhof:circleimageview:2.1.0' Nowadays, Every Android Developers uses Glide  or Picasso Image HTTP Libraries to Image in Image Views. If we uses any additional Libraries to get Circle Shaped Image View may lead to increase the size of an APK. To avoid this, Glide and Picasso provides solution to create Circle Image View. First, we will see how create circle image using Picasso. Circle Transformation using Picasso Download Picasso by Gradle in Android // This Library is created by Square.Inc compile 'com.squareup.picasso:picasso:2.5.2' The following snippet is used to load image into ImageView using Picasso Picasso.with(getApplicationContext()).load("http://i.imgur.com/DvpvklR.png") .placeholder(R.mipmap.ic_launcher) ...