분류 전체보기(344)
-
Javascript Video Tag
◉ 비디오 스트리밍 지원 여부 function isSupportVideo(){ obj = document.createElement('video'); return obj.canPlayType; //obj.canpPlayType("video/mp4"); } ◉ Parameters type 감지할 오디오/비디오 유형(및 선택적으로 코덱)을 지정 / 코덱을 포함한 값을 지정 video/ogg video/mp4 video/webm audio/mpeg audio/ogg audio/mp4 video/ogg; codecs="theora, vorbis" video/mp4; codecs="avc1.4D401E, mp4a.40.2" video/webm; codecs="vp8.0, vorbis" audio/ogg; codec..
2023.04.06 -
2023년 1월 참여 이벤트
신한pLay 출석체크 이벤트 - 누적출석별 포인트 지급 - 1 ~ 15일 : 3P, 16 ~ 30일 : 5P, 31 ~ 45일 : 7P 신한 pLay - 신한카드 신한 pLay로 이동합니다. pay.shinhancard.com 신한pLay - 신한플러스 출석퀴즈 - 3~100P 랜덤 - 3회, 10회, 20회, ALL출석시 2배, 3개, 4배, 5배 포인트 즉시 지급 신한 pLay - 신한카드 신한 pLay로 이동합니다. pay.shinhancard.com 신한 pLay - 오늘의 OX 퀴즈 - 신한 pLay > 투데이 중간쯤에 위치 신한 pLay - 신한카드 신한 pLay로 이동합니다. pay.shinhancard.com
2023.01.06 -
클립보드 Clipboard
@ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { final android.content.ClipboardManager cm; final android.content.ClipData clipData; cm = (android.content.ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE); clipData = android.content.ClipData.newPlainText("text label", "클립보드에 저장되는 값"); cm.setPrimaryClip(clipData); } else { final android.text.ClipboardManager cm; ..
2022.12.27 -
TalkBack(Accessibility) 활성화 여부
활성화 확인 int accessibilityEnabled = 0; try { accessibilityEnabled = Settings.Secure.getInt(context.getApplicationContext().getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED); // accessibilityEnabled = 0:Off, 1:On } catch (Settings.SettingNotFoundException e) { } 활성화된 서비스 확인 String strEnabledServices = ""; if (accessibilityEnabled == 1) { strEnabledServices = Settings.Secure.getString(con..
2022.11.20 -
Devices Status Processing 상태
Registration is being processed for these devices. They may become available for development and ad hoc distribution in 24 to 72 hours. Changes to device availability will appear in the Status column. 이 장치에 대한 등록을 처리 중입니다. 24~72시간 내에 개발 및 임시 배포가 가능해질 수 있습니다. 장치 가용성에 대한 변경 사항은 상태 열에 나타납니다. 지금까지 개발하면서 본적이 없었던 상태이다. 우선 결과를 기다려 봐야겠다.
2022.11.20 -
HTTP 오류
408 Request Timeout 서버가 사용하지 않는 연결을 끊고 싶다는걸 의미, 서버가 클라이언트의 요청 없이도 유휴 상태의 연결에 전송한다. 504 Gateway Timeout 서버가 게이트웨이(Gateway) 혹은 프록시(Proxy)의 역할을 하는 동안 시간 안에 업스트림 서버(upstream server)로부터 요청을 마치기 위해 필요한 응답을 받지 못 했음을 나타낸다.
2022.11.10