6
TextView 텍스트에 이미지를 추가하는 방법은 무엇입니까?
저는 Google에서 검색 한 결과 "hello my name is [image]" 와 같이 TextView텍스트에 이미지를 포함하는 방법에 대한 저와 유사한 질문을 발견 한이 사이트를 발견했습니다 . 대답은 다음과 같습니다. ImageSpan is = new ImageSpan(context, resId); text.setSpan(is, index, index + strLength, 0); 이 코드에서 알고 싶습니다. 컨텍스트에서 무엇을 입력하거나해야합니까? text.setSpan()가져 오기 또는 …