검색결과 리스트
글
프로그램/Android
2013. 3. 14. 14:05
안드로이드 엑티비티, 엑티비티가 아닌곳에 클릭 리스너 넣기
v = new View(context) {
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
drawRect(canvas);
}
};
v.setBackgroundColor(color.black);
v.setOnTouchListener(touchListener);
LayoutParams source = new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT);
v.setX(0);
v.setY(0);
,,,,,,,,,,,,,,,,,,,,,,,,,
OnTouchListener touchListener = new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
TouchMotion(event);
return true;
}
};
'프로그램 > Android' 카테고리의 다른 글
안드로이드 단축키 (0) | 2013.03.15 |
---|---|
트랙백Trackback이 뭔가요? (0) | 2013.03.15 |
안드로이드 다이얼로그 AlertDialog.Builder (0) | 2013.03.12 |
안드로이드 에러 android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application (0) | 2013.03.12 |
안드로이드 토스트 연속 출력 및 위치 지정하기 (0) | 2013.03.12 |
RECENT COMMENT