I would like to ask you how I can put rounded corners on com.facebook.widget.ProfilePictureView.
I tried to use
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="50dip" />
<solid android:color="#dd7b7a"/>
</shape>
and android:background="@drawable/rounded_shape", but the rounded part is outside (ProfilePictureView is FrameLayout) of the image and the image is not rounded itself. Any ideas?