I created a comboseekbar using the library android-comboseekbar-master. And i implemented the xml and code
<com.infteh.comboseekbar.ComboSeekBar
android:id="@+id/seekbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
app:multiline="false"
app:textSize="12sp"
app:color="#124578" />
In the java code
ComboSeekBar mSeekBar;
mSeekBar = (ComboSeekBar) rootView.findViewById(R.id.seekbar);
List<String> seekBarStep = Arrays.asList("1", "5", "15", "25", "50",
"100");
mSeekBar.setAdapter(seekBarStep);
Now i have set the step-value[1,5,15...], but how can i get the step-value when the user drags and selects each in the seekbar..