Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
とにかく文字列オーバーレイを作成する方法はありますか? 私はマップにスポットを表示するプロジェクトに取り組んでいるので、id のようなスポットを識別する文字列も表示したいのですが、att、Andre Mariano など
String の代わりに StringBuilder() を使用します。例..
StringBuilder sb = new StringBuilder(); sb.append("some string"); sb.append("more string"); Toast.makeText(this, sb, Toast.LENGTH_LONG).show();