일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ios
- SO 파일
- IMAGE
- JavaScript Engine
- Status Bar
- V8 Engine
- android log dump
- so file
- v8 engine xcode build
- ios framework
- apns
- 안드로이드
- embedd
- appbarlayout
- sha1 convert hashkey
- apk 다운사이징
- Android NDK시스템
- IOS10
- apache
- 공인인증서 정보
- Objective C
- Android
- Magnify Anim
- 공인인증서 만료일
- FlexiblePageView
- Push
- java
- Google V8 Engine
- PageControl
- 인증서 정보 뽑아내기
- Today
- Total
목록전체 글 (55)
caTea 블로그
public void setMapBounds(ArrayList array){ mGoogleMap.moveCamera(CameraUpdateFactory.newLatLng(new LatLng(33.510306, 126.491825))); LatLngBounds.Builder builder = new LatLngBounds.Builder(); for(LatLng ll : array){ builder.include(ll); } int width = getResources().getDisplayMetrics().widthPixels; int height = getResources().getDisplayMetrics().heightPixels; CameraUpdate cu = CameraUpdateFactory...
어느 양키성님께서 만든 클래스아주 부드럽게 작동한다 /** * Created by achee7059 on 2017. 4. 14.. * * 앱바 스크롤 부드럽게 하는 클래스 */ public class FlingBehavior extends AppBarLayout.Behavior { private static final String TAG = FlingBehavior.class.getName(); private static final int TOP_CHILD_FLING_THRESHOLD = 1; private static final float OPTIMAL_FLING_VELOCITY = 3500; private static final float MIN_FLING_VELOCITY = 20; boolean s..
돋보기 처럼 선택된 뷰가 커보이게 되는 뷰페이저 양옆의 뷰들은 조금 작아진다. 그래서 돋보기의 영어인 Magnify 으로 이름을 지었다. import android.content.Context; import android.graphics.Color; import android.support.v4.view.PagerAdapter; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.LinearLayout; import java.util.ArrayList; /** * Created by achee7059 on ..