일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- sky 시리우스폰
- 안드로이드 개발 2.0 강좌
- 안드로이드 개발 강좌
- 스카이 안드로이드폰 시리우스
- 영어
- 안드로이드2.0
- 구글 안드로이드
- 하루 한마디 영어
- 안드로이드2.0개발
- 안드로이드폰
- 인기있는 블로그 만들기
- 안드로이드 개발
- 안드로이드 배경화면
- 안드로이드 개발 2.0
- 안드로이드 2.0 개발
- objective-c
- 안드로이드 바탕화면
- 스카이 안드로이드폰 시리우스 K양 동영상
- MapView
- 구글 안드로이드 개발
- 구글안드로이드
- 아이폰 바탕화면
- 아이폰 배경화면
- Form Stuff
- 하루한마디영어
- android
- 스마트폰 배경화면
- 안드로이드개발
- 안드로이드
- SKY 시리우스
- Today
- Total
moozi
그래픽코드 본문
package com.naver.graphictest;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
class MyGraphic extends View{
private Paint paint; //붓역할을 하는 paint선언.
//생성자
public MyGraphic(Context context){
super(context);//부모생성자호출
paint = new Paint();//paint인스턴스 생성
paint.setColor(Color.RED);//빨간색으로 지정
}
//그림을 그리는 메서드
protected void onDraw(Canvas canvas){
super.onDraw(canvas);
canvas.drawRect(100, 100, 200, 200, paint);
//stroke적용
paint.setStyle(Paint.Style.STROKE);
canvas.drawRect(100, 210, 200, 310, paint);
}
}
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_main);
//그래픽클래스 인스턴스 생성
MyGraphic mg = new MyGraphic(this);
setContentView(mg);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
'안드로이드개발강좌' 카테고리의 다른 글
안드로이드 스튜디오에서 JSON 테스트 (0) | 2015.04.30 |
---|---|
BlurMaskFilter가 적용되지 않을 때 (0) | 2015.04.24 |
nfc reader writer (0) | 2014.12.04 |
NFC 웹페이지 띄우기 (0) | 2014.11.26 |
무음/진동 처리 (0) | 2014.11.21 |