문자열로 해당 Resource (혹은 레이아웃에 포함된 View) 의 ID 값을 가져온다; ----------------------------------------------------------------- getResources().getIdentifier(파일명, 디렉토리명, 패키지명); 또는, getResources().getIdentifier(패키지명:디렉토리/파일명, null, null); 으로도 가능하다. ----------------------------------------------------------------- String resName = "@drawable/imgEnd"; String packName = this.getPackageName(); // 패키지명 int resID = getResources().getIdentifier(resName, "drawable", packName); String viewName = "imgViewEnd"; String packName = this.getPackageName(); // 패키지명 int resID = getResources().getIdentifier(resName, "id", packName); 주로 리소스/ 뷰의 이름을 조합형식으로 만들어 가져와야 할 경우에 이 같은 코드를 사용하여 처리할 수 있다. 예를 들어, for (int i=0; i < 3; i++) { String resName = "@drawable/img_" + i; // 결론적으로 이미지 리소스 이름은 img_1, img_2, img_3 이 되겠다; int resID = getResources().getIdentifier(resName, "drawable", packName); ImageView iv = (ImageView)f...