gpt4 book ai didi

java - 为什么这段代码在 kotlin(Android) 中选择了错误的 dayofMonth?

转载 作者:行者123 更新时间:2023-12-02 15:04:15 25 4
gpt4 key购买 nike

Android 中的 DatePickerDialog 选择错误的月份,否则编码运行正常

如果我选择 11 FEB 2020 ....Toast 显示 42 FEB 2020 ...... 问题仅与月份有关

这是 MainActivity.kt

class MainActivity : AppCompatActivity() {
private val format = SimpleDateFormat("DD MMM, YYYY",Locale.US)

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

btn_show.setOnClickListener {
val now = Calendar.getInstance()
val datePicker = DatePickerDialog(this,DatePickerDialog.OnDateSetListener{ view, year, month, dayOfMonth ->

val selectedDate = Calendar.getInstance()
selectedDate.set(Calendar.YEAR, year)
selectedDate.set(Calendar.MONTH, month)
selectedDate.set(Calendar.DAY_OF_MONTH, dayOfMonth)

val date = format.format(selectedDate.time)

Toast.makeText(this,"Date: $date",Toast.LENGTH_SHORT).show()
},
now.get(Calendar.YEAR),now.get(Calendar.MONTH),now.get(Calendar.DAY_OF_MONTH))

datePicker.show()
}
}
}

这是activity_main.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">

<Button
android:id="@+id/btn_show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Dialog"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

日期选择器正常,但用于在 toast 中显示日期的格式错误:

您必须使用dd(一月中的某天),而不是DD(一年中的某天)。 2月11日确实是一年中的第42天。

private val format = SimpleDateFormat("dd MMM, yyyy",Locale.US)

Reference

关于java - 为什么这段代码在 kotlin(Android) 中选择了错误的 dayofMonth?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60414114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com