작동하지 않음이 작동 :변수/자원 연결이
Toast.makeText(getApplicationContext(), attemptsRemainingCount.toString(), Toast.LENGTH_LONG).show();
이 작동 : 그러나
Toast.makeText(getApplicationContext(), R.string.attemptsRemaining, Toast.LENGTH_LONG).show();
이를 작동하지 않습니다
Toast.makeText(getApplicationContext(), attemptsRemainingCount.toString() + R.string.attemptsRemaining, Toast.LENGTH_LONG).show();
그것을 나에게주는 모든가 긴 숫자. 누군가 제가 여기서 연결의 잘못을 말해 주시겠습니까?
아, 맞아. 귀하의 제안에 감사드립니다. :) – BoshJailey