2017-03-25 62 views
2

如何在支持多行的本機腳本中獲取文本區域?nativescript中的多行文本框

我嘗試過使用不支持多行的文本字段。

也試圖此代碼多添加到文本字段:

var myTextfield = this.page.getViewById<TextField>("noteView"); 

myTextfield.android.setInputType(android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE); 

回答

6

經過一些調查,是能夠使用本地腳本「的​​TextView」組件,使這個文本框和它的一些屬性。

下面是文本框代碼: <TextView style="margin-top: 15px" borderColor="#DEDEDE" borderWidth="1" height="100px" hint="Enter Note" returnKeyType="send" class="input input-border"></TextView>

這裏是文本視圖工作的屏幕截圖:

Screen Shot of the textview working