Android Studio在版本3.3中的布局编辑器中禁用了textview周围的阴影

时间:2019-01-16 06:09:06

标签: android android-studio android-layout

在Android Studio 3.3的org.openqa.selenium.InvalidSelectorException: invalid selector: Unable to locate an element with the xpath expression //a[Contains(Text(),'Forgot Password?')] because of the following error: SyntaxError: Failed to execute 'evaluate' on 'Document': The string '//a[Contains(Text(),'Forgot Password?')]' is not a valid XPath expression. 中,TextView的左侧和右侧有一个奇怪的阴影。安装后,该阴影不会出现在设备中,而只会出现在编辑器中。这是Android Studio中某些指示的错误还是新功能?如果这是一项功能,是否可以禁用它?

enter image description here

test.xml

LinearLayout

1 个答案:

答案 0 :(得分:6)

阴影是仅用于突出显示LinearLayout方向,而不是在安装应用程序时突出显示。

LinearLayout有两个定向选项:horizontalvertical。默认情况下,如果未声明,则将方向视为horizontal,因此在两个垂直端都显示阴影。同样,当我们将方向声明为vertical时,它在两个水平端都显示阴影。

到目前为止,我还没有找到禁用它的方法。 AS 3.3可能没有提供它。我仍然会尝试查找是否可以禁用阴影。