리비전 5, 0.7 kB
(mefour에 의해 체크인됨, 15 년 전)
|
--
|
Line | |
---|
1 |
package com.paad.todolist; |
---|
2 |
|
---|
3 |
import android.content.Context; |
---|
4 |
import android.graphics.Canvas; |
---|
5 |
import android.util.AttributeSet; |
---|
6 |
import android.widget.TextView; |
---|
7 |
|
---|
8 |
public class TodoListItemView extends TextView { |
---|
9 |
|
---|
10 |
public TodoListItemView(Context context,AttributeSet ats,int ds) { |
---|
11 |
super(context,ats,ds); |
---|
12 |
init(); |
---|
13 |
} |
---|
14 |
|
---|
15 |
public TodoListItemView(Context context,AttributeSet ats) { |
---|
16 |
super(context,ats); |
---|
17 |
init(); |
---|
18 |
} |
---|
19 |
|
---|
20 |
public TodoListItemView(Context context) { |
---|
21 |
super(context); |
---|
22 |
init(); |
---|
23 |
} |
---|
24 |
|
---|
25 |
private void init() { |
---|
26 |
// TODO Auto-generated method stub |
---|
27 |
} |
---|
28 |
|
---|
29 |
@Override |
---|
30 |
public void onDraw(Canvas canvas){ |
---|
31 |
super.onDraw(canvas); |
---|
32 |
} |
---|
33 |
} |
---|