I'm setting a textview as a child to a TableRow view programmatically and I cannot seem to get the text to wrap inside of the parent.
Here is the code which should be wrapping the text inside of the TableRow. Notice the setSingleLine is being set to false.
TextView value = new TextView(this);
![alt text][1]value.setLayoutParams(new TableRow.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
value.setSingleLine(false);
value.setEllipsize(TruncateAt.END);
value.setHorizontallyScrolling(false);
value.setText(txt);
value.setTextColor(Color.BLACK);
value.setTextSize(12);
value.setTypeface(generalFont);
The documentation doesn't say by setting it to false will make it multiline, it says it will restore it to the defaults.
setSingleLine(boolean singleLine) If true, sets the properties of this field (lines, horizontally scrolling, transformation method) to be for a single-line input; if false, restores these to the default conditions.
Does anybody have a code snippet or URL which points to a multiline TextView being created programmatically?
TEXT IN TEXT VIEW
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus tempus porttitor diam, sit amet rutrum nunc laoreet at. Mauris sit amet tristique e
IMAGE SHOWING THE ISSUE