일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스마트폰
- UITableView
- simulator
- Example
- error
- 샘플
- 해몽
- 포켓몬 GO
- swift
- loop
- 신도림 테크노마트
- IOS
- 포켓볼
- GCD
- 보라카이
- UIView
- setting
- 얻는법
- Xcode
- 아이폰7
- 신도림
- afterdelay
- Check
- 공략
- 앱스토어
- push
- Bitcode
- 페이백
- LG유플러스
- swift3
- Today
- Total
도래울
안드로이드 커스텀뷰 예제 본문
Main.java
package com.andr;
import android.app.Activity;
import android.os.Bundle;
public class main extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new GraphicsView(this));
}
}
GraphicsView.java
package com.andr;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Path.Direction;
import android.view.View;
public class GraphicsView extends View{
private final Path path;
private final Paint pPaint;
private final Paint tPaint;
private final String words;
public GraphicsView(Context context) {
super(context);
path = new Path();
path.addRect(50, 50,200,80,Direction.CW);
pPaint=new Paint();
pPaint.setStyle(Paint.Style.STROKE);
pPaint.setColor(Color.LTGRAY);
pPaint.setStrokeWidth(2);
words="It's Custom View Test";
tPaint= new Paint();
tPaint.setColor(Color.WHITE);
tPaint.setTextSize(15f);
}
public void onDraw(Canvas canvas) {
canvas.drawPath(path, pPaint);
canvas.drawTextOnPath(words, path, 0, 20, tPaint);
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.andr.main.GraphicsView android:id="@+id/graphics"
android:layout_width="fill_parent" android:layout_height="fill_parent"/>
</LinearLayout>
'개발 > Android' 카테고리의 다른 글
안드로이드 파일시스템에 파일 생성하여 데이터 저장, 불러오기 예제 (0) | 2016.02.05 |
---|---|
안드로이드 Resources에서 Color Value 사용하기 (0) | 2016.02.05 |
안드로이드 GridView 예제 (0) | 2016.02.05 |
안드로이드 탭 예제 (0) | 2016.02.05 |
Android DatePicker (0) | 2016.02.05 |