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.
TextView「(+ teamName)Score:」というテキストを設定しようとしています。
TextView
私が現在持っているもの: textview1.setText(+teamName "Score:"); 標準形式は次のようになっているはずなので、エラーが含まれています("" + teamName)
textview1.setText(+teamName "Score:");
("" + teamName)
TextViewTHEN引用符を表示するにはどうすればよいですか?これも可能ですか?
(注:teamName文字列を指します)
teamName
それが可能だ。文字列変数( )と+の間の必要な場所を使用しますteamName"Score: "
+
"Score: "
textview1.setText(teamName + " Score:");
String text = String.format("%s Score", teamName); textview1.setText(text);