mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00

recycleNativeView filed now accepts: "always" | "never" | "auto". Always will recycle the nativeView no matter if its nativeView or android proprties are accessed. Never will disable recycling. Auto will recycle it only if nativeView and android properties are not accessed.
19 lines
891 B
TypeScript
19 lines
891 B
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 | android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
|
|
editText.setGravity(android.view.Gravity.TOP | android.view.Gravity.START);
|
|
}
|
|
|
|
public resetNativeView(): void {
|
|
super.resetNativeView();
|
|
this.nativeViewProtected.setGravity(android.view.Gravity.TOP | android.view.Gravity.START);
|
|
}
|
|
}
|
|
|
|
TextView.prototype.recycleNativeView = "auto"; |