我尝试了心爱的代码但是在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>
答案 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