The gradient I have created it is as follows
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="45"
android:dither="true"
android:endColor="#00cff7"
android:startColor="#0095bf" />
</shape>
In my XML file, I want this gradient to be visible as a circle.
I have tried the following but the gradient appears as a square. I tried the following third party library but the gradient is not visible.
XML
<de.hdodenhof.circleimageview.CircleImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/profile_image"
android:layout_width="96dp"
android:layout_height="96dp"
android:src="@drawable/blue_bg"
app:civ_border_width="2dp"
app:civ_border_color="#FF000000"/>
Tried the following link but still, the gradient is square.
Any help on how this can be achieved?
Note: I don't want the gradient to be created in a circular shape as I'm reusing it later in the app
Use
CardView
like this:You don't need
CircleImageView
anymore.