如何在 nativescript 中创建多行可编辑文本视图?
how can i create multiline editable textview in nativescript?
我尝试了心爱的代码,但在 android 中不起作用,无法换行
<TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1"
height="100px" hint="Enter Note" returnKeyType="send" class="input input-border"></TextView>
<Button text="ADD" (tap)="insertNote()"></Button>
像这样使用不带 'px' 单位的高度属性:
<TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1" height="100" hint="Enter Note" returnKeyType="send" class="input input-border"/>
或以像素为单位提供更大的高度值:200px
我尝试了心爱的代码,但在 android 中不起作用,无法换行
<TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1"
height="100px" hint="Enter Note" returnKeyType="send" class="input input-border"></TextView>
<Button text="ADD" (tap)="insertNote()"></Button>
像这样使用不带 'px' 单位的高度属性:
<TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1" height="100" hint="Enter Note" returnKeyType="send" class="input input-border"/>
或以像素为单位提供更大的高度值:200px