mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
19 lines
1.0 KiB
TypeScript
19 lines
1.0 KiB
TypeScript
import { TextView as TextViewDefinition } from ".";
|
|
import { EditableTextBase } from "../editable-text-base";
|
|
|
|
export * from "../text-base";
|
|
|
|
export class TextView extends EditableTextBase implements TextViewDefinition {
|
|
public _configureEditText(editText: android.widget.EditText) {
|
|
editText.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_NORMAL | android.text.InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE);
|
|
editText.setGravity(android.view.Gravity.TOP | android.view.Gravity.LEFT);
|
|
}
|
|
|
|
public initNativeView(): void {
|
|
// TODO: We should be able to reset it using only our properties. Check it first.
|
|
super.initNativeView();
|
|
this.nativeView.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_NORMAL | android.text.InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE);
|
|
}
|
|
}
|
|
|
|
// TextView.prototype.recycleNativeView = true;
|