Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 예외처리
- struts2
- 오버로딩
- paint
- 어노테이션
- Menu
- 메서드
- Java
- layout
- 안드로이드
- AWT
- OGNL
- 생성자
- mybatis
- JavaScript
- JSP
- Graphic
- oracle
- 클래스
- 기본
- 배열
- Android
- HTML
- 이클립스
- 전화걸기
- 국제화
- Spring
- Eclips
- 에러페이지
- 메소드
Archives
- Today
- Total
목록alert (2)
note
자바스크립트의 자료형 확인 typeof 연산자
자바스크립트는 내부적으로 자료형이 정해진다 타입에 신경을 쓰지 않아도 되지만 알아내야 할 경우가 있다 타입 체크 중괄호만 하면 객체다 alpha라는 것은 없기 때문에 undefined 정의 되지 않는것도 타입으로 출력이 된다
JavaScript/기본
2012. 3. 9. 09:21
Message 팝업창 띄우기 경고창,토스트 표시,Progress Dialog
일반적으로 Toast(토스트) 메세지는 꼭 볼 필요 없는 메세지를 전달할때 사용하고 Alert (경고창)은 무조건 보여주어야 하는 메세지를 전달할때 사용한다 Progress Dialog는 어떠한 데이터를 가지고 오는데 사용 package com.commonsware.android.messages; import android.app.Activity; import android.app.AlertDialog; import android.app.ProgressDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.Button; import androi..
Android/기본
2012. 1. 11. 15:30