Completely based on ImageView, although a single draw operation may not be the fastest, it avoids unnecessary redraws. Overall, it remains quite efficient.
<com.wang.round.RoundedImageView
android:id="@+id/riv"
android:layout_width="400dp"
android:layout_height="200dp"
android:layout_marginTop="1px"
android:background="#aaa"
android:padding="20dp"
android:scaleType="centerCrop"
android:src="@drawable/ttt3"
app:borderColor="#f0f"
app:borderWidth="10dp"
app:cornerRadius="50dp" />
cornerRadius、cornerTopLeftRadius、cornerTopRightRadius、cornerBottomLeftRadius、cornerBottomRightRadius、oval
borderWidth、borderColor
-
Support rounded corners, four different rounded corners, oval, and border
-
Support xml preview
-
All ImageView images are supported, such as: glide load gif images
-
All ImageView properties are available and are exactly the same (except setCropToPadding), such as adjustViewBounds、scaleType、padding
Your build.gradle must have jitpack.io, like:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
google()
jcenter()
}
}
then:
api or implementation 'com.github.weimingjue:RoundedImageView:0.9.2'