你好,我正在關注學習Android的書籍教程,但這本書已經過時了。我得到一個「不能翻譯的字符串文字」和「不要連接文本與setText」。我想知道什麼是更新TextView的正確方法?我認爲這就是我基本上想要做的。如何正確更新textView?
<TextView
android:id="@+id/textScore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Score: 999"
android:textSize="36sp"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@+id/textOperator"
android:layout_toStartOf="@+id/textOperator" />
<TextView
android:id="@+id/textLevel"`enter code here`
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Level: 4"
android:textSize="36sp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="11dp"
android:layout_marginEnd="11dp" />
這裏是Java。
textObjectScore.setText("Score:" + currentScore);
textObjectLevel.setText("Level:" + currentLevel);
如果你創建了一個'String textToSet =「Score:」+ currentScore;'then textObjectScore.setText(textToSet);'? –