Android日期选择控件使用详解
程序员文章站
2022-06-28 12:28:58
本文实例为大家分享了android日期选择控件的使用方法,供大家参考,具体内容如下1.创建dialog 布局
本文实例为大家分享了android日期选择控件的使用方法,供大家参考,具体内容如下
1.创建dialog 布局
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"> <datepicker android:datepickermode="spinner" android:calendarviewshown="false" android:id="@+id/date_picker" android:layout_width="wrap_content" android:layout_height="wrap_content"> </datepicker> </linearlayout>
2.mainactivity
public class mainactivity extends appcompatactivity { private textview date; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); date = findviewbyid(r.id.date); //点击"日期"按钮布局 设置日期 date.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { //通过自定义控件alertdialog实现 alertdialog.builder builder = new alertdialog.builder(mainactivity.this); view view = (linearlayout) getlayoutinflater().inflate(r.layout.date_dialog, null); final datepicker datepicker = (datepicker) view.findviewbyid(r.id.date_picker); //设置日期简略显示 否则详细显示 包括:星期\周 datepicker.setcalendarviewshown(false); //设置date布局 builder.setview(view); builder.settitle("选择出生日期"); builder.setpositivebutton("确 定", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { //日期格式 int year = datepicker.getyear(); int month = datepicker.getmonth()+1; int dayofmonth = datepicker.getdayofmonth(); date.settext(year+"年"+month+"月"+dayofmonth+"日"); dialog.cancel(); } }); builder.setnegativebutton("取 消", new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { dialog.cancel(); } }); builder.create().show(); } }); } }
3.activity_main布局
<?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" tools:context=".mainactivity"> <textview android:id="@+id/date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2020年06月01日"></textview> </linearlayout>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 八卦图有什么魔力?伏羲是怎么画八卦图的?
下一篇: Python 数据的累加与统计的示例代码
推荐阅读
-
Android SharedPreferences四种操作模式使用详解
-
详解Android 在 ViewPager 中使用 Fragment 的懒加载
-
详解Android使用Html.fromHtml需要注意的地方
-
css类选择器的使用方法详解
-
Android 中Lambda表达式的使用实例详解
-
android中ProgressDialog与ProgressBar的使用详解
-
Android中的android:layout_weight使用详解
-
Android仿京东淘宝自动无限循环轮播控件思路详解
-
AngularJS Select(选择框)使用详解
-
Angularjs中使用layDate日期控件示例