반응형
안녕하세요.
이번 포스팅은 안드로이드에서 아날로그 시계입니다.
안드로이드에서는 기본적으로 다양한 위젯을 지원합니다.
아날로그 시계는 어플리케이션을 만들 때 유용하게 사용할 수 있습니다.
아날로그 시계는 TextView의 상속을 받습니다.
-java.lang.Object
↘android.view.View
↘android.widget.TextView
↘android.widget.AnalogClock
TextView의 상솟을 받아 background 색상을 설정할 수 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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">
<AnalogClock
android:id="@+id/simpleDigitalClock"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:text="@tools:sample/date/hhmmss" />
</LinearLayout>
|
▲ AnalogClock 위젯을 사용한 어플리케이션의 디스플레이입니다.
▲ 기본 속성을 적용했습니다.
댓글