Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
android gallery left,reight move tip 본문
public OnClickListener arrow_listener = new OnClickListener(){
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
MotionEvent e1 = MotionEvent.obtain(
SystemClock.uptimeMillis(),
SystemClock.uptimeMillis(),
MotionEvent.ACTION_DOWN, 89.333336f, 265.33334f, 0);
MotionEvent e2 = MotionEvent.obtain(
SystemClock.uptimeMillis(),
SystemClock.uptimeMillis(),
MotionEvent.ACTION_UP, 300.0f, 238.00003f, 0);
switch(v.getId()){
case R.id.btn_map_arrow_left:
center_gallery.onFling(e1, e2, -800, 0);
break;
case R.id.btn_map_arrow_right:
center_gallery.onFling(e1, e2, 800, 0);
break;
}
}
};
'Android > Tip&Tech' 카테고리의 다른 글
[펌]안드로이드 구글맵 거리계산, 좌표계산 (0) | 2011.05.18 |
---|---|
android google map api 참고문서 (0) | 2011.05.17 |
무조건 한장씩 스크롤되는 gallery (0) | 2011.05.17 |
android tip (0) | 2011.05.16 |
canvas를 bitmap , png 저장 (0) | 2011.05.16 |