드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : computer_50927짧은주소 복사하기
작성자 : s된장s
추천 : 0
조회수 : 300회
댓글수 : 1개
등록시간 : 2012/06/26 00:45:53
public class ImageView extends View {
public ImageView(Context context) {
super(context);
}
@Override
public void onDraw(Canvas canvas){
Bitmap _android = BitmapFactory.decodeResource(getResources(), R.drawable.background);
canvas.drawBitmap(_android, 0, 0, null);
}
}
이건 이미지 로딩이 되는데
public class CardGameView extends View {
Bitmap m_BackGroundImage;
// Bitmap m_Card_BackSide;
public CardGameView(Context context){
super(context);
m_BackGroundImage = BitmapFactory.decodeResource(getResources(), R.drawable.background, null);
// m_Card_BackSide = BitmapFactory.decodeResource(getResources(), R.drawable.huck, null);
}
@Override
public void onDraw(Canvas canvas){
canvas.drawBitmap(m_BackGroundImage, 0, 0, null);
// for(int y =0; y < 2; y++){
// for(int x=0; x < 3; x++)
// canvas.drawBitmap(m_Card_BackSide, 35 + x*90, 150 + y*130, null);
// }
}
}
이건 왜 안됨요 ㅜㅜ 오류가 뜨는것도 아니고 이잉 ㅜㅜ
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.