When I click an option in the xml graphical interface in the eclipse ADT, I 
want the property to be added on a newline so it stays easy to read, but 
eclipse adds it on the same line. This is how it would look if I added the 
layout_width property:
[code]<TextView android:id="@+id/textview" 
android:layout_width="fill_parent"
/>[/code]

And here's how I want it to look:
[code]<TextView
  android:id="@+id/textview"
  android:layout_width="fill_parent"
/>[/code]

I use both the graphical interface and the xml code so it is much easier to 
read in the second format, but the IDE adds the property on the same line. 
Does anyone know how to change this?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Discuss" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/android-discuss/-/wefNWxSS3VEJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/android-discuss?hl=en.

Reply via email to