How To Set A Border Around Circle Image View Like Instagram?
i want to set a circle border around circle image view like instagram stories,any one can help? here is my image view
Solution 1:
You can also use the ShapeableImageView
provided by the Material Components Library.
Something like:
<com.google.android.material.imageview.ShapeableImageView
app:shapeAppearanceOverlay="@style/circularImageView"
app:srcCompat="@drawable/...."
app:strokeColor="@color/....."
app:strokeWidth="1dp"
...
/>
with:
<stylename="circularImageView"><itemname="cornerFamily">rounded</item><itemname="cornerSize">50%</item></style>
Note: it requires at least the version 1.2.0-alpha03
.
Post a Comment for "How To Set A Border Around Circle Image View Like Instagram?"