구)홈페이지 오탈자 보기
안드로이드 프로그래밍 정복

 

페이지오탈자 내용등록일
3164

(164페이지 상단 소스코드)

두 번째 중괄호 뒤에 세미콜론이 누락되었습니다.


         } 
     }
}


->


         } 
     };
}

2010-07-161
3175

(175page 7번째 줄.)

static View inflate (Contextcontext, int resource, ViewGroup root) 


->


static View inflate (Context context, int resource, ViewGroup root) 

2010-06-281
3175

(175page 11번째 줄)

LinearLayout linear = (LinearLayout)View.inflate(this, R.layout.main, null);

->

LinearLayout linear = (LinearLayout)View.inflate(this, R.layout.inflation, null);

2010-06-281
4217

(217page)

소스코드 맨 마지막에 있는 

      }
    }
  }
}

->
       }
     }
  };
}
 
세 번째 중괄호 다음에 세미콜론을 붙여야 합니다.

2010-06-241
5269

(269page 소스코드)

Public class Timer extends Activity {
 int value=0;
 Textview mText;
 CountDownTimer mTimer;

->

Public class Timer extends Activity {
 int value=0;
 Textview mText;
 

네 번째 소스코드인 CountDownTimer mTimer; 를 삭제합니다.

2010-06-281
6281

(281페이지 예문)

소스코드의 제목이 잘못되었습니다.

Input/menucheck.xml

->

menu/menucheck.xml

2010-07-051
6311

(311page 8번째 줄)

abd의 기능 대부분이

-> adb의 기능 대부분이

2010-06-281
7342

(342page 밑에서 7번째 줄)

hintColor 속성을 생략하면 

-> 

textColorHint 속성을 생략하면

2010-06-281
7369

(369p)

소스코드의 제목이 잘못되었습니다.

Widget/ninepatch.java

->

Widget/ninepatch.xml

2010-07-051
7375

(375p)

소스코드 제목이 잘못되었습니다.

Widget/drawable/arrowback.xml

->

Widget/layout/arrowbutton.xml

2010-07-051
8390

(390p)

첫 번째 소스코드 제목 오류

Widget/listtest.java

->

Widget/listtest.xml

2010-07-051
16806

(806장 밑에서 2번째 줄)

표의 오른쪽 "설명' 부분에서

LEB 불빛을 출력한다 

->

LED 불빛을 출력한다

2010-11-018