Nativescript 如何删除TextView(Android)中的蓝色下划线

Nativescript 如何删除TextView(Android)中的蓝色下划线,nativescript,Nativescript,如何删除TextView-Android上显示的蓝色下划线 我对文本字段没意见,但在多行文本视图中,它看起来很奇怪。 <Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo"> <StackLayout backgroundColor="red"> <Label text="Tap the button" class="title"/>

如何删除TextView-Android上显示的蓝色下划线

我对文本字段没意见,但在多行文本视图中,它看起来很奇怪。


<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo">
  <StackLayout backgroundColor="red">
    <Label text="Tap the button" class="title"/>
    <Button text="TAP" tap="{{ onTap }}" />
    <Label text="{{ message }}" class="message" textWrap="true"/>
    <TextField hint="" id="tfield" text="tests textfield"/>
   <TextView hint="" id="tview" text="tests textView" editable="true" style="border-color:white; "  />


  </StackLayout>
</Page>
删除文本字段和文本视图边框底部是设置背景色。这也会使边框上色。



删除文本字段和文本视图边框底部是设置背景色。这也会使边框上色。

设置TextView的颜色与背景相同

设置TextView的颜色与背景相同