'view'에 해당되는 글 1건

  1. 2011.03.04 [android] custom view 기본 구조

[android] custom view 기본 구조

public class touchtest extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MyTouch mt = new MyTouch(this);

setContentView(mt);
}

protected class MyTouch extends View {

public MyTouch(Context context) {
super(context);
}
public void onDraw(Canvas canvas) {
}
}
}
prev 1 next