Azra
Azra
I want to disable my control's click when it's highlighted. My code : ``` ChainTourGuide.init(activity) .setToolTip(new ToolTip() .setBackgroundColor(activity.getResources().getColor(R.color.color_help_text_background)) .setDescription(message) .setGravity(gravity) ).setOverlay(new Overlay() .disableClick(true) .setEnterAnimation(getEnterAnimation()) .setExitAnimation(getExitAnimation()) .setOnClickListener(new View.OnClickListener() { @Override public...
Is there any way to change the radius of the pointer ?? As my view is very big, the pointer covers most of my screen. I want to define the...
I want to use my image as indicator instead of a circle. Is there any way to do so ?