반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<AnalogClock
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<DigitalClock
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
/>
<Chronometer
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/chronometer1"
android:format="시간 측정 : %s"
android:gravity="center"
android:textSize="30dp"/>
<TimePicker
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:timePickerMode="spinner"/>
<DatePicker
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:datePickerMode="spinner"/>
</LinearLayout>
|
cs |
출처 : 코틀린을 활용한 안드로이드 프로그래밍
반응형
'코틀린study' 카테고리의 다른 글
[코틀린] 단순 계산기 / for 문 / LinearLayout (0) | 2021.08.09 |
---|---|
[코틀린] 버전 에러 문제 build.gradle (Module:app) (0) | 2021.08.09 |
[코틀린] 애완동물 보기 프로그램 / checkbox / Radio Button / kotlin (0) | 2021.08.09 |
[코틀린] 체크박스/스위치/이미지/버튼 (0) | 2021.08.07 |
[코틀린] 간단 계산기 (0) | 2021.08.07 |