File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ matrix:
3838 language : android
3939 os : linux
4040 env :
41- - Android="25 "
41+ - Android="26 "
4242 jdk : oraclejdk8
4343 before_install : nvm install 6.10.3
4444 script : " grunt ci:build:android"
@@ -58,7 +58,7 @@ matrix:
5858 language : android
5959 os : linux
6060 env :
61- - Android="25 "
61+ - Android="26 "
6262 - Platform="Android"
6363 jdk : oraclejdk8
6464 before_install : nvm install 6.10.3
Original file line number Diff line number Diff line change @@ -148,7 +148,11 @@ export class DropDown extends DropDownBase {
148148 }
149149 public [ selectedIndexProperty . setNative ] ( value : number ) {
150150 if ( value >= 0 ) {
151- this . _listPicker . selectRowInComponentAnimated ( value , 0 , true ) ;
151+
152+ // HACK to fix #178
153+ setTimeout ( ( ) => {
154+ this . _listPicker . selectRowInComponentAnimated ( value , 0 , true ) ;
155+ } , 1 ) ;
152156 }
153157
154158 this . ios . setText ( this . _getItemAsString ( value ) ) ;
You can’t perform that action at this time.
0 commit comments