Xmlns: android = "http://schemas.android.com/apk/res/android" is added to all my layout objects causing errors

At some point after updating all my ADT and Eclipse tools, all my XML file errors when opening them

xmlns:android="http://schemas.android.com/apk/res/android" added to each layout object (the root object, for example, as I installed it), as well as the nested RelativeLayouts and LinearLayouts and FrameLayouts)

it causes errors in this XML file, and I have to manually delete them, even if it is unnecessary and tiring to find and replace it, when I just want to look at the XML document

why is this happening, how can I prevent it?

+4
source share
1 answer

The problem may be related to your lint errors

Right click on your goo-> Android Tools project ... → select Clear Lint Markers

0
source

Source: https://habr.com/ru/post/1482198/


All Articles