본문 바로가기
[programming]/[Android] 안드로이드

[Android] Widget 안드로이드 위젯 DigitalClock 디지털시계 실행 소스 코드 예제

by codeomni 2019. 11. 17.
반응형

 


안녕하세요.

이번 포스팅은 안드로이드에서 디지털시계입니다.

안드로이드에서는 기본적으로 다양한 위젯을 지원합니다.

디지털 시계는 어플리케이션을 만들 때 유용하게 사용할 수 있습니다.

 

 

디지털 시계는 TextView의 상속을 받습니다.

-java.lang.Object

  android.view.View

    android.widget.TextView

      android.widget.DigitalClock

TextView의 상솟을 받아 background 색상을 설정할 수 있습니다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
 
    <DigitalClock
        android:id="@+id/simpleDigitalClock"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:text="@tools:sample/date/hhmmss" />
 
</LinearLayout>

 

 

 

 DigitalClock 위젯을 사용한 어플리케이션의 디스플레이입니다.

 기본 속성을 적용했습니다.

 

 

댓글