I am trying to make empty lines within android. This is what I have been doing:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="\n\n"
I want to know if there is a better way? Thanks
|
|
You can use an empty View to add blank space. For 30 vertical density pixels:
If you need a vertical, flexible space-filler, place this between items in a LinearLayout:
or
This works for most layouts, except widgets (use FrameLayout instead). |
||||
|
|
If you don't need the gap to be exactly 2 lines high, you can add an empty view like this:
|
|||
|
|
|
|||
|
|
|
Agree with all the answers......also,
should work :) I am just messing with others as TextView is my favourite (waste of memory though!) |
|||
|
|