More files migrated.

This commit is contained in:
Hristo Hristov
2016-10-31 14:50:20 +02:00
parent b58e0b08a3
commit e4c21258a3
57 changed files with 2214 additions and 2171 deletions

View File

@ -20,19 +20,4 @@ export class Label extends common.Label {
this._android.setSingleLine(true);
this._android.setEllipsize(android.text.TextUtils.TruncateAt.END);
}
get [textProperty.native](): string {
return this._android.getText();
}
set [textProperty.native](value: string) {
this._android.setText(value);
}
get [formattedTextProperty.native](): string {
return this._android.getText();
}
set [formattedTextProperty.native](value: FormattedString) {
let text = value ? value._formattedText : ""
this._android.setText(text);
}
}
}