Skip to content Skip to sidebar Skip to footer

Holoeverywhere Seekbar Classcastexception

I am using the SeekBar class provided by HoloEverywhere. I have the following imports: import org.holoeverywhere.widget.SeekBar; import org.holoeverywhere.widget.SeekBar.OnSeekBarC

Solution 1:

Change to:

<org.holoeverywhere.widget.SeekBar
        android:id="@+id/sectionTimeElapsedSeekBar"
        ...
        />

Solution 2:

Extend activity from org.holoeverywhere.app.Activity.

Solution 3:

try importing:

import android.widget.SeekBar;

instead of

import org.holoeverywhere.widget.SeekBar;

Post a Comment for "Holoeverywhere Seekbar Classcastexception"