Try using setThumb
,setProgressDrawable
or setBackground
methods of your SeekBar
! If you really want a cool customized seekbar like this, I suggest you try referring xml files. It would make your life easier.
I've wrote a simple example that will give you a start point.
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);//the layout that has your seekbar
SeekBar mSeekBar = (SeekBar)findViewById(R.id.seek_bar);//your seek bar
mSeekBar.setThumb(R.drawable.thumb_image);//your thumb image
mSeekBar.setProgressDrawable(R.drawable.progress_image);//your progress image
mSeekBar.setBackground(R.drawable.background_image);//your background image
}
}