lab.naminsik
  • Javascript, jQuery
  • Reactjs
  • React Native
  • iOS
  • Android
  • AWS
  • Server
  • Html, CSS
  • Php
  • asp .net
  • SQL
  • Word Press
search
keywords
  • Android 2018‧01‧10

    Status bar 상태바 숨기기/보이기

    상황에 따라 상태바를 보였다가 숨겼다가 할 경우 아래 코드를 Activity  안에 넣어서 호출하여 사용한다. java > MainActivity.java 안에 public class MainActivity extends AppCompatActivity { 안에 아래 함수를 넣어준다. public void statusbarVisibility(boolean setVisibility){ if(setVisibility){ if (Build.VERSION.SDK_INT < 16) { getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); } else { View decorView = getWindow().getDecorView(); int uiOptions = View.SYSTEM_UI_FLAG_VISIBLE; decorView.setSystemUiVisibility(uiOptions); } }else{ if (Build.VERSION.SDK_INT < […]

popular

  • 키보드 키 코드
  • [회고] Github Actions가 갑자기 안된다. (Waiting for a runner to pick up this job…)
  • aws pm2 서버 자동 실행 설정
  • 영문 텍스트의 경우 css로 대문자 혹은 소문자로 변환시켜 노출시키기
  • Incorrect integer value: '' for column 'xxx'
  • 워드프레스 대시보드에서 FTP접속 포트가 다를 경우
  • react native - Warning: Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it. 오류
  • react, vue - Uncaught SyntaxError: Unexpected token
  • 타입스크립트와 함께 React.lazy 사용하기
  • jQuery-마우스 움직임을 이용, 좌표값 가져오기

comment

  • 감사합니다!
  • 감사합니다~
  • 잘 해결 되셨다니 다행입니다!...
  • 정말 감사합니다. 덕분에 해결했습니다!...
  • 유용한정보 대단히 감사합니다....