File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/main/java/com/turingtechnologies/materialscrollbar Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22
33android {
44 compileSdkVersion 24
5- buildToolsVersion " ${ supportLibVersion } "
5+ buildToolsVersion ' 24.0.1 '
66
77 defaultConfig {
88 applicationId " com.turingtechnologies.materialscrollbardemo"
Original file line number Diff line number Diff line change @@ -21,5 +21,5 @@ allprojects {
2121 jcenter()
2222 }
2323
24- project. ext. supportLibVersion = ' 24.0 .0'
24+ project. ext. supportLibVersion = ' 24.1 .0'
2525}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22apply plugin : ' com.github.dcendents.android-maven'
33apply plugin : ' com.jfrog.bintray'
44
5- def version = ' 10.1.0 '
5+ def version = ' 10.1.1 '
66
77install {
88 repositories. mavenInstaller {
4141
4242android {
4343 compileSdkVersion 24
44- buildToolsVersion " ${ supportLibVersion } "
44+ buildToolsVersion ' 24.0.1 '
4545
4646 defaultConfig {
4747 minSdkVersion 11
Original file line number Diff line number Diff line change @@ -569,6 +569,11 @@ public T setBarThickness(int thickness){
569569 if (indicator != null ){
570570 indicator .setSizeCustom (thickness );
571571 }
572+
573+ layoutParams = (LayoutParams ) getLayoutParams ();
574+ layoutParams .width = thickness ;
575+ setLayoutParams (layoutParams );
576+
572577 return (T )this ;
573578 }
574579
You can’t perform that action at this time.
0 commit comments