如何在nativescript中创建多行可编辑textview?

时间:2018-02-12 08:24:09

标签: user-interface nativescript angular2-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>

1 个答案:

答案 0 :(得分:1)

使用不带'px'单位的height属性,如下所示:

<TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1" height="100" hint="Enter Note"  returnKeyType="send" class="input input-border"/>

或者以像素为单位给出更高的高度值:200px