아날로그 시계(AnalogClock)

참고 프로젝트: AnalogClockDemoA1

아날로그 시계를 표현할 수 있는 뷰이다. 아날로그 시계는 다음의 상속 계층도에서 알 수 있듯이 View 클래스를 통해서 모든 것이 새로 만들어져 있다.

java.lang.Object
  ↳ android.view.View
     ↳ android.widget.AnalogClock

아날로그 시계는 다음과 같은 형태를 가지고 있다.


그림 3-12

아날로그 시계의 XML 코드는 매우 단순하다.

코드 AnalogClock

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <AnalogClock
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

아날로그 시계와 관련된 속성을 살펴보고 싶다면 다음 링크를 참고하기 바란다.
URL http://www.androidside.com/docs/reference/android/widget/AnalogClock.html

results matching ""

    No results matching ""