Additional fixes

This commit is contained in:
Rossen Hristov
2016-03-18 14:57:28 +02:00
parent 6c68423ee9
commit ed090326b1
6 changed files with 10 additions and 6 deletions

View File

@ -10,8 +10,9 @@ export class TextBase extends common.TextBase {
}
}
public _setFormattedTextPropertyToNative(value) {
var newText = value ? value._formattedText : null;
if (this.android) {
this.android.setText(value._formattedText);
this.android.setText(newText);
}
}
}