Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I received error in my xml file. "Incorrect line ending: found carriage return (\r) without corresponding newline (\n).

<Button
     android:id="@+id/btn_login"
     android:layout_width="100dip"
     android:layout_height="wrap_content"
     android:layout_alignParentBottom="true"
     android:layout_alignRight="@+id/et_un"
     android:layout_marginBottom="15dp"
     android:layout_marginRight="22dp"
     android:text="Login"
     android:textColor="#AA0000"
     android:textSize="10pt" />

How to solve it. can anyone help

share|improve this question
2  
Open the layout file with notepad or vi or whatever, then save it again – K-ballo Dec 27 '12 at 4:56
i tried. same error – user1931166 Dec 27 '12 at 5:01

5 Answers

up vote 25 down vote accepted

Using Eclipse on Windows?

  1. Open layout file
  2. Ctrl+Shift+F (Command+Shift+F in MacOSX)
  3. Save the layout file and close it.
  4. Delete any .out files the builder might have created.
  5. Clean project.
share|improve this answer
1  
useful. on mac os Command + Shift + F – neobie Jan 25 at 12:30
Thanks for the add for Mac. I use Windows and Mac interchangeably, and suspect this is why I see more of the above errors than usual. Also added a reference for the rogue .out files. – 323go Jan 25 at 16:55
2  
In windows cleaning the project is enough – Azzy Elvul Jan 30 at 12:03
Cleaning the project in Mac works too. – mussharapp Apr 20 at 10:58
@323go can u tell what is this Ctrl+Shift+F do? after doing above steps it works. – Sjk Apr 24 at 9:34
show 1 more comment

I would like stupid thing, But It worked for me

  1. select all (ctrl+a)
  2. cut (ctrl+x )
  3. Paste it again (ctrl+v)
  4. Save it (ctrl+s)

It really worked for me.

share|improve this answer
Great idea, re-pasting the text doesn't mess up the formatting in my version control tool, and also fixes the line ending problem. – jklp Mar 26 at 23:13

Yesterday, I got this very same error message.

My fix is by simply removing every newline after

/>

So, if you have

<Button
    />


<Button
    />

change it into

<Button
    />
<Button
    />

Might not be the best solution.

share|improve this answer

It's easier than other answers:

Ctrl + 1 -> Fix lines

;)

share|improve this answer

To fix this in one of my layout XML files, I did the following from within ADT:

  • right-click on the file in the Package Explorer
  • Pick Open With -> Text Editor

Now the offending line gets highlighted with a big red X.

  • I then deleted the line endings (combining the two lines) and then hit "return" to add it back in. In some cases I found that didn't quite work so I copied a similar line that didn't have the issue, and pasted it over top of the offending line (highlight the bad line, then paste). Sometimes it seemed that the real issue was with the line before or after it.

Then after saving it would show up the next bad line, so lather-rinse-repeat until it's all done.

  • When all done, use right-click, Open With -> Android Common XML Editor to get back to the visual design view.

(ADT v21.0.1, on Mac OSX Lion)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.