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