ボタンをクリックすると、テキストビューの値をゼロに設定したいのですが、テキストビューは更新されませんが、テキストの色を設定できます。postdelayed や runOnUIThread などのソリューションを試しましたが、変更はありません。アプリケーションでタブを使用しました別のタブに移動してからこのアクティビティに戻ると、問題が発生します。助けてください。よろしくお願いします。
public void Delete(View view) {
time.setTextColor(Color.GREEN);
time.setText("0");
time.setTextColor(Color.BLUE);
}
<ImageButton
android:id="@+id/delete_sound"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginLeft="15dp"
android:background="@android:color/transparent"
android:clickable="true"
android:contentDescription="@string/dummyString"
android:onClick="Delete" />