When a layout is created it usually looks like this: <?xml version="1.0" encoding="utf-8"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout-width="match_parent" android:layout-height="match_parent" android:orientation="vertical"> ...etc...
After formatting the file, it becomes like this: <?xml version="1.0" encoding="utf-8"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout-width="match_parent" android:layout-height="match_parent" android:orientation="vertical"> ...etc... This only happens to the root element. Other elements are ok. Looks like a bug to me. -- You received this message because you are subscribed to the Google Groups "adt-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
