반응형
안녕하세요.
이번 포스팅은 안드로이드에서 캘린더 뷰입니다.
안드로이드에서는 기본적으로 다양한 위젯을 지원합니다.
캘린더 뷰는 어플리케이션을 만들 때 유용하게 사용할 수 있습니다.
캘린더 뷰는 FrameLayout의 상속을 받습니다.
-java.lang.Object
↘android.view.View
↘android.widget.FrameLayout
↘android.widget.CalendarView
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="utf-8"?>
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<CalendarView
android:layout_width="match_parent"
android:layout_height="wrap_content">
</CalendarView>
</FrameLayout>
|
▲ 캘린더 뷰 위젯을 사용한 어플리케이션의 디스플레이입니다.
▲ 기본 속성을 적용했습니다.
댓글