break in a line of text
in
Programming Questions
•
1 year ago
Hi there,
Dont know if someone has addressed this already, but if not here it is again :)
Im trying to do a break in a line of text, similarly to the way you would in html "<br>"
I have an array list of these objects I have and whenever you hover each one a certain piece of text pops up,
but Im having trouble with sentences being too long
Any help would be greatly appreciated!
///// this is not my entire code instead where I am dropping my own words on my array listings
violetCollection = new ArrayList();
violetCollection.add(new violet_Node (92,159, "west hollywood library"));
violetCollection.add(new violet_Node (204,303, "global beat cultural center"));
violetCollection.add(new violet_Node (122,368, "brasil brasil cultural center"));
violetCollection.add(new violet_Node (315,180, "ukranian cultural center"));
violetCollection.add(new violet_Node (370,218, "lucy florentine cultural center"));
violetCollection.add(new violet_Node (372,205, "levantine cultural center"));
violetCollection.add(new violet_Node (384,194, "korean cultural center"));
violetCollection.add(new violet_Node (416,205, "los angeles public library"));
violetCollection.add(new violet_Node (524,221, "east l.a. public library"));
violetCollection.add(new violet_Node (1145,210, "da center for the arts"));
1