Yes, that's fine - but it's not clear what you're concerned about. If you think that that's calling the append method during the StringBuilder constructor, it's not. This code is equivalent to:
StringBuilder tmp = new StringBuilder();
tmp = tmp.append(mMonth + 1);
tmp = tmp.append("-");
tmp = tmp.append(mDay);
tmp = tmp.append("-");
tmp = tmp.append(mYear);
tmp = tmp.append(" ");
String date = tmp.toString();
Each call to append will actually return this in StringBuilder, but in other similar APIs the object may be immutable and each method will build a new object and return that... the calling code would look the same.
(I assume the real code had a toString call, of course, otherwise it wouldn't have compiled.)
Note that this is actually equivalent to:
String date = (mMonth + 1) + "-" + mDay + "-" + mYear + " ";
... which is really rather more readable than the original code, and does the same thing. The Java compiler will use StringBuilder under the hood anyway. Of course, you should really be using SimpleDateFormat or Joda's DateTimeFormatter to format dates, of course...