일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 안드로이드 개발 강좌
- 안드로이드2.0
- 영어
- 안드로이드 2.0 개발
- 스마트폰 배경화면
- android
- 안드로이드 개발 2.0 강좌
- objective-c
- 안드로이드 개발
- 아이폰 바탕화면
- 하루한마디영어
- 구글안드로이드
- 구글 안드로이드 개발
- 아이폰 배경화면
- 안드로이드
- 안드로이드폰
- sky 시리우스폰
- 안드로이드 개발 2.0
- 하루 한마디 영어
- Form Stuff
- MapView
- 안드로이드개발
- 안드로이드 바탕화면
- 스카이 안드로이드폰 시리우스
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 배경화면
- 안드로이드2.0개발
- 인기있는 블로그 만들기
- SKY 시리우스
- 구글 안드로이드
- Today
- Total
moozi
안드로이드 그래픽 본문
package com.naver.combo2b_28;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Rect;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new MyGraphic(this));
}
//inner class
private static class MyGraphic extends View {
public MyGraphic(Context context){
super(context);
}
protected void onDraw(Canvas canvas){
super.onDraw(canvas);
// Paint생성
Paint paint = new Paint();
paint.setAntiAlias(true);//테두리를 부드럽게.
paint.setColor(Color.RED);//색상설정
//직선 (시작x, 시작y, 끝x, 끝y, paint)
canvas.drawLine(10,10, 300, 10, paint);
//사각형
Rect rect1=new Rect(10,50,110, 150);
canvas.drawRect(rect1, paint);
//원 (중심x, 중심y, 반지름, paint)
canvas.drawCircle(60, 220, 50, paint);
//꺽은선(path)
paint.setStyle(Paint.Style.STROKE);//색을 채우지 않음
Path path1=new Path();
path1.moveTo(10, 290);//시작하는 점
path1.lineTo(60, 340);
path1.lineTo(110, 290);
path1.lineTo(160, 340);
canvas.drawPath(path1, paint);
//글자(텍스트, x좌표, y좌표, paint);
canvas.drawText("android", 10, 390, paint);
}
}
}
'안드로이드개발강좌' 카테고리의 다른 글
구글맵 (0) | 2017.05.01 |
---|---|
안드로이드 그래픽 터치이벤트 (0) | 2015.11.25 |
구글맵 마커 아이콘 red-dot (0) | 2015.11.17 |
genymotion gapp설치 (0) | 2015.11.12 |
runOnUiThread를 활용한 파일다운로드 (0) | 2015.11.10 |