Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you change a showcaseview circle radius?

I use the master code from git repo of the showcaseview library.

Since am new to setting up this library, I am not sure how one can reduce the size of the circle indicator.

Some legacy code contained config options where you can set the radius, but i couldn't find a source which has customising the same in the master repo.

like image 710
Abhilash L R Avatar asked Dec 01 '25 03:12

Abhilash L R


1 Answers

I think you can globally change the radius creating these 3 entries in the app/src/main/res/values/dimens.xml file

<dimen name="showcase_radius">94dp</dimen>
<dimen name="showcase_radius_inner">96dp</dimen>
<dimen name="showcase_radius_outer">128dp</dimen>

<dimen name="showcase_radius_material">94dp</dimen>

I'm showing the default values.

like image 108
MaxChinni Avatar answered Dec 02 '25 17:12

MaxChinni