androidroundingprofileprofile-picture

round profile image in android


I use the below code for making round profile picture in android

http://www.androidhub4you.com/2014/10/android-custom-shape-imageview-rounded.html

But in my main activity I used ListFragment instead of Activity

imageViewRound = ImageView)parentView.findViewById(R.id.imageView_round);
Bitmap icon = BitmapFactory.decodeResource(getResources(),R.drawable.noimage_square);
imageViewRound.setImageBitmap(icon);

I'm getting this error

05-15 12:21:27.359: E/AndroidRuntime(25107): Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ImageView.setImageBitmap(android.graphics.Bitmap)' on a null object reference

Solution

  • Try these

     com.androidhub4you.crop.RoundedImageView imageViewRound =(com.androidhub4you.crop.RoundedImageView) parentView.findViewById(R.id.imageView_round);