반응형
Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

Do Something IT

[안드로이드] getIdentifier (R 파일 사용하지 않고 접근하기) 본문

Android

[안드로이드] getIdentifier (R 파일 사용하지 않고 접근하기)

아낙시만더 2011. 2. 8. 11:56
반응형

코딩시 여러개의 R.id.아이디명을 받아올 경우 빠르게 처리 할수 있는 기능을 제공한다.
소스는 아래와 같다.
btn = new Button[3];
for (int i = 0; i < 3; i++) {
int resID = getResources().getIdentifier( "id/Button0" + (i+1), "id", this.getPackageName());
btn[i] = (Button) this.findViewById(resID);
btn[i].setOnClickListener(click);
}
반응형
Comments