일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- java
- Magnify Anim
- apns
- embedd
- 안드로이드
- Google V8 Engine
- Push
- IOS10
- SO 파일
- Objective C
- appbarlayout
- PageControl
- Status Bar
- ios
- apache
- FlexiblePageView
- Android
- 공인인증서 만료일
- apk 다운사이징
- 공인인증서 정보
- v8 engine xcode build
- IMAGE
- sha1 convert hashkey
- JavaScript Engine
- android log dump
- V8 Engine
- 인증서 정보 뽑아내기
- ios framework
- so file
- Android NDK시스템
- Today
- Total
목록전체 글 (55)
caTea 블로그
private SwipeMenuListView blockList = null; blockList = (SwipeMenuListView) findViewById(R.id.block_list); SwipeMenuCreator creator = new SwipeMenuCreator() { @Overridepublic void create(SwipeMenu menu) {SwipeMenuItem deleteItem = new SwipeMenuItem(BlockedFriendListActivity.this);deleteItem.setBackground(new ColorDrawable(Color.rgb(0xF9, 0x3F, 0x25)));deleteItem.setWidth(Utility.dip2pixel(Blocke..
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..
애니매이션 적용 액티비티에 이 코드 적용 @Overrideprotected void onResume() {// TODO 자동 생성된 메소드 스텁super.onResume();overridePendingTransition(R.anim.slide_in_from_bottom, 0);} @Overridepublic void finish() {// TODO 자동 생성된 메소드 스텁super.finish();overridePendingTransition(0, R.anim.slide_out_to_bottom); }