Answers for "round corner style in xml android studio"

1

round corner imageview android

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.makeramen:roundedimageview:2.3.0'
}
Posted by: Guest on April-25-2020
0

drawable only round specific corners in android studio

<corners android:topLeftRadius="6dp" android:topRightRadius="6dp"
         android:bottomLeftRadius="0.1dp" android:bottomRightRadius="0.1dp"/>
Posted by: Guest on August-16-2021

Code answers related to "round corner style in xml android studio"

Browse Popular Code Answers by Language