I created a comboseekbar using the library android-comboseekbar-master. And i implemented the xml and code
I looked into the library . I don't think there is an option for that. Although there is a close work around,look at my code, if you find this suitable use it, otherwise you can edit the library.
mSeekBar.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
toast(position + "");
switch (position) {
case 0:
//do something here
break;
case 1:
//do something here
break;
case 2:
//do something here
break;
case 3:
//do something here
break;
case 4:
//do something here
break;
case 5:
//do something here
break;
}
}
});