I am using a custom gauge: ChariotGauge
The problem is I am not able to display the needle and only my gauge gets shown.
I have used the gaugeBuilder.java
from the library and in my `mainactivity onCreate() instance I have added the below code:
minValue = 0; maxValue = 100; gauge1.setTotalNotches(80);
gauge1.setIncrementPerLargeNotch(10);
gauge1.setIncrementPerSmallNotch(2);
gauge1.setScaleMinValue(minValue);
gauge1.setScaleMaxValue(maxValue);
gauge1.setScaleCenterValue(50, true);
gauge1.setUnitTitle("Pressure");
gauge1.setAbsoluteNumbers(true);
gauge1.setValue(minValue);`
Can anyone help me out in displaying the needle. I just need to set the needle, not continuous.