> Hi, > I have been using several types of views (TextView, ImageView, > ImageButton etc) and those are being placed one under the other... > I would like to know how I can increase the "empty spacing" inbetween > those elements ? I have read enough about padding but that seems to be > the spacing between the actual content of a View and the boundaries of > the View itself...
Use margins instead (android:layout_marginTop, etc.). Those provide whitespace outside the boundaries of the View. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

