Android TextView : "setText로 표시된 텍스트 연결 안 함" setText()를 사용하여 텍스트를 설정하는 방법은 다음과 같습니다. prodNameView.setText("" + name); prodOriginalPriceView.setText("" + String.format(getString(R.string.string_product_rate_with_ruppe_sign), "" + new BigDecimal(price).setScale(2, RoundingMode.UP))); 첫번째는 단순한 사용이고 두번째는 텍스트를 포맷 텍스트로 설정하는 것입니다. Android Studio가 너무 재미있어요, 메뉴를 사용해봤는데 위의 두 줄에 대한 제안을 받았습니다. setText와 함께 표..