loop에서 findViewById 사용하기 (getIdentifier)
getIdentifier(), Android Developers public int getIdentifier (String name, String defType, String defPackage) 주어진 리소스의 이름을 통해, 리소스의 식별자(id)를 반환한다. package:type/entry 형식으로 완전히 정규화된 이름(fully qualified resource name)을 사용할 수 있다. 완전히 정규화된 이름을 사용할 때는 defType과 defPackage를 생략할 수 있다. 여러개의 리소스가 규칙적인 이름을 가지고 있을 때 사용한다. Button button1 = (Button) findViewById(R.id.button1); Button button2 = (Button) findView..
2019.02.11