【Android】DatePicker时间选择器

.xml代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
	xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" 
	android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	<TimePicker
	    android:id="@+id/tp1"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
	<TimePicker	    
	    android:id="@+id/tp2"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"/>
</LinearLayout>

显示:
在这里插入图片描述

发布了52 篇原创文章 · 获赞 17 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_40110781/article/details/104922423