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

时间:2016-11-30 13:25:02

标签: nativescript

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

我在TextField上使用它 - 但是在多行TextView中 - 看起来很奇怪。

2 个答案:

答案 0 :(得分:2)

设置TextView的颜色与背景相同

答案 1 :(得分:1)

<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>

删除textfield和textview border-bottom是设置背景颜色。这也会使边界变色。