向日期选择器添加自定义文本/注释

时间:2018-11-05 07:52:49

标签: android datepicker

enter image description here

我们如何在android日期选择器上添加自定义注释,我已经在这么多的网络中搜索了此问题

1 个答案:

答案 0 :(得分:1)

这是您可以做的简单布局示例,只需在对话框中打开它并处理从日历中获取的数据即可,或者您可以尝试制作个人日期选择器,这是您的选择。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="1dp"
        android:orientation="horizontal">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">

            <CalendarView
                android:id="@+id/calendarView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <Button
                android:id="@+id/button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Submit" />

            <TextView
                android:id="@+id/textView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Here we have some notes" />
        </LinearLayout>

    </LinearLayout>

</RelativeLayout>

This