我在布局文件中使用原生DatePicker,但它不会显示较低版本的材质样式(在棒棒糖之前)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp"
tools:context=".MainActivity">
<DatePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/datePicker" />
</LinearLayout>
我发现了一些libs,这些libs提示一个DatePickerDialog,但它不是我想要的。我想将DatePicker作为嵌入在布局上的小部件
如果使用SDK级别19进行绘制,它将如下所示(不使用材质):
任何建议或推荐的lib?