반응형
=================================
=================================
=================================
main.xml-------------->
<com.drawbitmap.MyView // 이곳에 package 경로와 클래스명을 적는다.
android:id="@+id/myView"
android:layout_below="@id/top"
android:layout_above="@id/btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
MyView.java------------>
// 사용하려는 목적에 따라 기타 함수는 다르겠지만 아래의 것들은 꼭 있어야 한다.
// 없으면 xml에서 속성들이 적용되지 않아서 컴파일은 되어도 실행이 안된다.
public class MyView extends View {
public MyView(Context context) {
super(context);
}
public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}
=================================
=================================
=================================
반응형
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 상태바(StatusBar) 사이즈 구하기 (0) | 2011.06.01 |
---|---|
안드로이드 레이아웃 뷰(view) 규칙 설정 테그내용 등등~ (0) | 2011.05.31 |
파일명으로 리소스 가져오기 (0) | 2011.05.24 |
안드로이드 뷰어,레이아웃,리스트뷰어등 업데이트 갱신 (0) | 2011.05.23 |
[안드로이드] 특정 버튼 안에 이미지 넣기 (0) | 2011.05.18 |