gpt4 book ai didi

android - 如何从android中的日历中获取出生日期?

转载 作者:行者123 更新时间:2023-11-29 15:25:39 25 4
gpt4 key购买 nike

我是安卓新手。我的布局如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="26-01-2010" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calender" />

</LinearLayout>

我有一个编辑框和按钮。当我点击按钮时,我想打开一个日历并能够从日历中选择一个日期。此外,所选日期必须设置为编辑框。

最佳答案

在 TextView 或按钮或编辑文本点击上调用方法 SelectDate

 private void SelectDate() {

final Calendar c = Calendar.getInstance();
year = c.get(Calendar.YEAR);
month = c.get(Calendar.MONTH);
day = c.get(Calendar.DAY_OF_MONTH);


showDialog(DATE_PICKER_ID);

}

@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case DATE_PICKER_ID:

// open datepicker dialog.
// set date picker for current date
// add pickerListener listner to date picker
return new DatePickerDialog(this, pickerListener, year, month,day);
}
return null;
}

private DatePickerDialog.OnDateSetListener pickerListener = new DatePickerDialog.OnDateSetListener() {

// when dialog box is closed, below method will be called.
@Override
public void onDateSet(DatePicker view, int selectedYear,
int selectedMonth, int selectedDay) {

year = selectedYear;
month = selectedMonth;
day = selectedDay;

// Show selected date
birthdate_edt.setText(new StringBuilder().append(month + 1)
.append("-").append(day).append("-").append(year)
.append(" "));

}
};

关于android - 如何从android中的日历中获取出生日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13527001/

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