Android studio disable shadow around textview in layout editor in version 3.3

后端 未结 1 641
余生分开走
余生分开走 2021-01-13 10:57

There is a weird shadow at the left and right of TextView when it is wrapped with in LinearLayout in android studio 3.3 . This shadow does not appe

相关标签:
1条回答
  • 2021-01-13 11:15

    The shadow is just to highlight LinearLayout orientation while in preview and not when the app is installed.

    LinearLayout has two options for orientation: horizontal & vertical. By default, if not declared, the orientation is considered as horizontal, thus showing the shadow at both the vertical ends. Similarly, when we declare orientation as vertical, it shows shadows at both the horizontal ends.

    I haven't found a way to disable it till now. Probably AS 3.3 does not provide it. I'll still try to find and see if I can disable shadows .

    0 讨论(0)
提交回复
热议问题