我正在为我的应用程序使用 Caldroid 库,但遇到了一个问题。

我只希望当前月份的日期显示在我的日历上。

我查看了 Caldroid 文档,但找不到任何内容。

我知道我可以设置日历的最大日期,但是我找不到任何用于设置每个月的最大/最小日期的内容。

最佳答案

希望这会帮助你:)

我有同样的问题并做了类似的事情。

在 drawable 中创建新的选择器,例如 calendar_cell_text_color.xml 。在这个文件中,你把某事像这样。

<!-- Caldroid days from prev and next month -->
<item android:color="@color/white" caldroid:state_date_prev_next_month="true"/>

<!-- Caldroid days from current month -->
<item android:color="@color/black" />

现在,您必须更改 CaldroidDefaultCell 的样式。

在文件 style.xml 中添加以下行。
 <!-- My Caldroid theme. -->
<style name="MyCaldroid" parent="CaldroidDefault">
     <!--If you use compact view in Caldroid -->
    <item name="styleCaldroidNormalCell">@style/CaldroidCell</item>

    <!-- If you use square (default) view in Caldroid-->
     <item name="styleCaldroidSquareCell">@style/CaldroidCell</item>
</style>

 <style name="CaldroidCell" parent="CaldroidDefaultCell">
    <item name="android:textColor">@drawable/calendar_cell_text_color</item>
</style>

现在,您需要在初始化 caldroid 后添加行以使用您的主题。
caldroidFragment = new CaldroidFragment();
caldroidFragment.setThemeResource(R.style.MyCaldroid);

现在其他月份的日期将不可见,但您仍然可以单击它们。我现在正在努力弄清楚如何禁用它们。

编辑 :

如果您想禁用日期
//date argument is current month visible on screen
public void disablePrevNextMonthDay(Date date){

    disableDates.setTime(date); // disableDates is a Calendar object
    disableDates.set(Calendar.DAY_OF_MONTH, 1); // 1st day of current month

    caldroidFragment.setMinDate(disableDates.getTime());
    int maxDay = disableDates.getActualMaximum(Calendar.DAY_OF_MONTH);
    disableDates.set(Calendar.DAY_OF_MONTH, maxDay);
    caldroidFragment.setMaxDate(disableDates.getTime()); //last day of current month
}

你在 caldroid 的 onChangeMonth() 方法中调用这个方法。

如果您在类似于 calendar_cell_text_color.xml 的文件中添加选择器 state_date_disabled 并将背景设置为白色,就像在前面的示例中使用文本颜色一样,您将拥有不可见的未点击日期。

关于android - Caldroid 只显示当月的天数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32038877/

10-09 00:08