본문 바로가기

CustomLayout 만들때 만날 수 있는 오류 DragLayout 을 만듬... 여기에서 을 하단으로 이동하고 싶은데DragLayout에서 gravity 값을 줘도 안되고FrameLayout에서 layout_gravity 값을 줘도 안되던 문제가 발생.... 그래서 소스코드상에서 ViewTreeObserver vto = dragLayout.getViewTreeObserver(); vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { // Put your code here. Log.d("DragTestActivity", "onGlobalLayout()"); dragLayout.minimize(); dragLayout.getV.. 더보기
출산용품 정리 1. 속싸개기적의 속싸개라는게 있다더라!! 이게 좋다던데... 한번 써봐야지-2014.09.04-스와들미, 스와들업 하나씩 삼!!ㅋㅋ 2. 유모차는 잉글레시나의 트릴로지, 마마스앤파파스의 어보2 중에 고민하다가어보2 네이비로 결정!! 3. 카시트 고민중싸이벡스 제로나플러스 와 브라이택스 플래티넘ICT 중에서기능같은건 싸이벡스가 더 맘에 들었지만싸이벡스는 중국OEM이라서.... 탈락결국 브라이택스 플래티넘ICT 스카이블루 색상으로 결정!!-2014.11.05-4. 아기침대 백화점에서 구경하고 싶었지만 백화점에도 아기침대가 없네...아..있다... 스토케............ 백화점에서 아기침대는 스토케뿐이다...선택지가 없다.... 그래서 신세계몰에 들어가서 검색해서쁘띠라뱅으로 당첨! 쁘띠라뱅 화이트로 주.. 더보기
DragHelper 를 활용한 View Drag&Drop 애니메이션 간단한 예제 만드는법 VIewDragHelper 생성자를 통해 초기화(1.0f는 시작시 민감도라고 함) public class DragLayout extends LinearLayout { private final ViewDragHelper mDragHelper; private View mDragView; public DragLayout(Context context) { this(context, null); } public DragLayout(Context context, AttributeSet attrs) { this(context, attrs, 0); } public DragLayout(Context context, AttributeSet attrs, int defStyle) { super(contex.. 더보기