为了账号安全,请及时绑定邮箱和手机立即绑定

Android系统时间控件Calendar

标签:
Android

xml代码:

<?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="wrap_content"
    android:background="@color/color_white"
    android:orientation="vertical"
    android:paddingHorizontal="@dimen/dimens_16dp"
    android:paddingTop="@dimen/dimens_16dp">

    <CalendarView
        android:id="@+id/calendarView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
        <TextView
            android:id="@+id/tv_confirm"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dimens_44dp"
            android:layout_marginHorizontal="@dimen/dimens_16dp"
            android:background="@drawable/bg_radius8_0f41a6"
            android:gravity="center"
            android:text="@string/limit_time_define"
            android:textColor="#ffffffff"
            android:textSize="16sp"
            android:layout_marginTop="@dimen/dimens_10dp"
            android:layout_marginBottom="@dimen/dimens_10dp"
            />
</LinearLayout>

java代码:


//声明
   private long calendarTime;
    private Calendar calendar;

//使用
        calendarView.setOnDateChangeListener(new CalendarView.OnDateChangeListener() {
            @Override
            public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth) {
                //显示用户选择的日期
                Util.showToast(mContext, year + "年" + (month + 1) + "月" + dayOfMonth + "日");
                if (calendar == null) {
                    calendar = Calendar.getInstance();
                }
                calendar.set(year, month, dayOfMonth);
                calendarTime = calendar.getTimeInMillis();

            }
        });
//点击事件
public void onViewClicked() {
        long systemTime = System.currentTimeMillis();
        if (systemTime > calendarTime && DateUtil.compareToday(calendarTime) != 0) {
            Util.showToast(mContext, R.string.unchose_time);
        } else {
            Util.showToast(mContext, R.string.current_time);
        }
        LogUtils.e("time", "calendarTime: " + calendarTime + "systemTime" + systemTime);
    }
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消