HoloEverywhere が提供する SeekBar クラスを使用しています。次のインポートがあります。
import org.holoeverywhere.widget.SeekBar;
import org.holoeverywhere.widget.SeekBar.OnSeekBarChangeListener;
予備的なエラーや警告は表示されませんが、コンパイルすると、次の行でクラス キャスト例外が発生します。
sectionTimeElapsedSeekBar = (SeekBar) findViewById(R.id.sectionTimeElapsedSeekBar);
対応する XML は次のとおりです。
<SeekBar
android:id="@+id/sectionTimeElapsedSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/startOrPauseTimerButton"
android:layout_alignParentLeft="true"
android:layout_marginBottom="16dp"
android:max="2100" />
誰にもアイデアはありますか?