You could always just build the string one segment at a time: String message = " Hello"; // Do Something message += " World!"; Log.v("Example" ...
stackoverflow.com