String Overlay in Android
is there anyway of creating a String overlay? Because I'm wo开发者_开发百科rking on a project which I show the spots in the map, but I wanna also show some String identifing the spot, like an id, for example att, Andre Mariano
Use StringBuilder() instead of String. Example..
StringBuilder sb = new StringBuilder();
sb.append("some string");
sb.append("more string");
Toast.makeText(this, sb, Toast.LENGTH_LONG).show();
精彩评论