現在、背景とプログレスバーの画像を変更する必要があるため、xmlを使用せずにカスタムSeekbarを作成しようとしています。これは私が現在持っているものです:
Drawable drawable = new BitmapDrawable(appState.images.get(Integer.parseInt(image)));
this.setBackgroundDrawable(drawable);
Drawable drawable2 = new BitmapDrawable(appState.images.get(Integer.parseInt(image_a)));
this.setProgressDrawable(drawable2);
this.setProgress(0);
ただし、progressDrawableはSeekbarのサイズ全体に設定されているだけで、親指を左右に動かしても何も起こりません。私は完全に困惑しているので、誰かが何かアイデアを持っていますか?