【Kotlin 초보자】DatePicker로 일시 표시
6314 단어 안드로이드DatePickerKotlin
이미지
Kotlin에서 쉽게 iPhone처럼 보이는 날짜와 시간을 볼 수 있습니다.
구현
코드는 없어야하지만, 용서,,,
MainActivity.kt
package com.example.datapicker
import android.app.AlertDialog
import android.app.DatePickerDialog
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.TextView
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val dataPiker = findViewById<TextView>(R.id.date_picker)
dataPiker.setOnClickListener {
showDataPicker()
}
}
private fun showDataPicker() {
val dataPiker = findViewById<TextView>(R.id.date_picker)
val datePickerDialog = DatePickerDialog(this,
AlertDialog.THEME_HOLO_DARK,
DatePickerDialog.OnDateSetListener() { view, year, month, dayOfMonth->
dataPiker.text = "${year}/${month + 1}/${dayOfMonth}"
}, 2020, 12, 1)
datePickerDialog.show()
}
}
ActivityMain.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
tools:context=".MainActivity">
<TextView
android:id="@+id/date_picker"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="ここをタップして"
android:gravity="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
끝에
Github에도 주기 때문에 곤란한 분이라면 꼭!
htps : // 기주 b. 코 m / 나오 유키 츠루오 / 다타 피 c r mp ぇ
Reference
이 문제에 관하여(【Kotlin 초보자】DatePicker로 일시 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/naoyukitsuruo/items/efcacfb4dcbac1e1405f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)