wolfined / android-comboboxseekbar

android-comboboxseekbar is a mix between a seekbar/combobox.
https://bintray.com/techwolf12/android/comboboxseekbar
Other
2 stars 0 forks source link

Unable to add deppendency, giving error in syc. #3

Open ahmadnabeelbhatti opened 7 years ago

ahmadnabeelbhatti commented 7 years ago

Error:Could not find comboboxseekbar.jar (nl.techwolf12.android:comboboxseekbar:1.0.1). Searched in the following locations: https://jcenter.bintray.com/nl/techwolf12/android/comboboxseekbar/1.0.1/comboboxseekbar-1.0.1.jar

ahmadnabeelbhatti commented 7 years ago

Best way to do seek bar: https://stackoverflow.com/questions/33846767/android-seekbar-with-separators

To add only dots, set text null ComboSeekBar comboSeekBar = (ComboSeekBar) findViewById(R.id.comboseekbar); List points = new ArrayList<>(); points.add(""); //point 1 points.add("");//point2 points.add(""); points.add(""); comboSeekBar.setAdapter(points);