With the following settings:
k.setDefaultState(0);
k.setBalloonValuesTimeToLive(1);
k.setAnimation(true);
k.setKnobRelativeRadius(KNOB_SIZE);
k.setFreeRotation(true);
k.setShowBalloonValues(true);
k.setNumberOfStates(10);
k.setBalloonValuesTimeToLive(0);
android:layout_width="64dp"
android:layout_height="64dp"
android:id="@+id/knob1"
app:kNumberOfStates="10"
It seems that the initial balloon for the state zero never dissapears. When the value is changed, it has both the initial and the current value balloons.
With the following settings:
k.setDefaultState(0);k.setBalloonValuesTimeToLive(1);k.setAnimation(true);k.setKnobRelativeRadius(KNOB_SIZE);k.setFreeRotation(true);k.setShowBalloonValues(true);k.setNumberOfStates(10);k.setBalloonValuesTimeToLive(0);android:layout_width="64dp"android:layout_height="64dp"android:id="@+id/knob1"app:kNumberOfStates="10"It seems that the initial balloon for the state zero never dissapears. When the value is changed, it has both the initial and the current value balloons.