일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android
- IOS10
- ios
- SO 파일
- JavaScript Engine
- Objective C
- java
- 공인인증서 만료일
- apache
- Status Bar
- sha1 convert hashkey
- IMAGE
- 인증서 정보 뽑아내기
- embedd
- Push
- so file
- 공인인증서 정보
- Android NDK시스템
- v8 engine xcode build
- Google V8 Engine
- V8 Engine
- android log dump
- apns
- Magnify Anim
- PageControl
- apk 다운사이징
- 안드로이드
- ios framework
- FlexiblePageView
- appbarlayout
- Today
- Total
목록Status Bar (2)
caTea 블로그
1. 요 라이브러리를 추가한다 2. values-v19 파일을 만든다 내용은 아래와같다 설정은 TranslucentDecor 가 제일중요하다 이게 없으면 작동이 안된다. 나머지설정은 알아서 하시고 3. 매니페스트에 이설정을 사용한다 ex) 4. 이코드를 삽입 크리에이트 함수에 mTintManager = new SystemBarTintManager(this);mTintManager.setStatusBarTintEnabled(true);mTintManager.setNavigationBarTintEnabled(true);int color = Color.argb(153, Color.red(21), Color.green(21), Color.blue(21)); mTintManager.setTintColor(colo..
xml에 요걸 선언 유틸 클래스에 아래 코드 함수 선언 public static void setStatusBarColor(MainActivity context , View statusBar,int color){ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { Window w = context.getWindow(); w.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); //status bar height //int actionBarHeight = getActionBarHeight(); int stat..