ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 안드로이드 아날로그 시계
    program_language 및 궁금한것/Android Studio 2018. 7. 29. 15:02

    계속해서 기능이 추가되므로 추가기능을 보려면 버젼을 업해주면된다.

    min버젼은 잘생각해야 한다.


    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="아날로그 클락(벽시계)"
    android:textSize="20dp"
    android:background="#0000ff"
    android:gravity="center"
    />
    <AnalogClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    />
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="디지털 클락"
    android:textSize="20dp"
    android:background="#0000ff"
    />
    <DigitalClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"/>
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="텍스트클락 전자시계"
    android:textSize="20dp"
    android:background="#0000ff"
    />
    <TextClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:format12Hour="hh:mm:ss aa"
    />
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="텍스트클락 전자시계"
    android:textSize="20dp"
    android:background="#0000ff"
    />
    <TextClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:format24Hour="hh:mm"
    />
    </LinearLayout>

    아코... 시계 참 이쁘다.





    반응형

    댓글

Designed by Tistory.