本文件包括微信小程序打卡日历的wxml、wxss、js、json四个文件以及引入文件bmob.js和util.js,下载后基本可以使用,但是打卡的数据需要自己配置后台,这里使用的是bmob后台
2022-06-08 11:01:35 51KB 微信小程序 打卡日历
1
android实现日历查看功能;1、支持农历、节气、常用节假日 2、日期范围设置,默认支持的最大日期范围[1900.1~2049.12] 3、禁用日期范围设置 4、初始化选中单个或多个日期 5、单选、多选操作 6、跳转到指定日期 7、替换农历为指定文字 8、通过自定义属性定制日期外观,以及简单的日期item布局配置 9、新增查看打卡记录功能;(在原来基础上新增了查看打卡记录功能,包含打卡正常和打卡异常;修复bug) 原文链接:https://blog.csdn.net/jifenglie/article/details/107202697
2022-04-18 18:13:49 72KB 打卡日历 日历
1
一款适合打卡日历的简单实现demo,采用RecyclerView实现,支持左右点击切换,不支持左右滑动切换
2022-03-29 22:09:18 12.48MB anndroid 打卡日历 自定义日历
1
import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; import com.org.security.app.main.R; import com.org.security.tools.DateUtils; /** * Created by Administrator on 2017/8/16. */ public class SignDate extends LinearLayout { private TextView tvYear; private InnerGridView gvWeek; private InnerGridView gvDate; private AdapterDate adapterDate; public SignDate(Context context) { super(context); init(); } public SignDate(Context context, AttributeSet attrs) { super(context, attrs); init(); } public SignDate(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(); } private void init() { View view = View.inflate(getContext(), R.layout.layout_signdate, this); tvYear = view.findViewById(R.id.tvYear); gvWeek = view.findViewById(R.id.gvWeek); gvDate = view.findViewById(R.id.gvDate); tvYear.setText(DateUtils.getCurrentYearAndMonth()); gvWeek.setAdapter(new AdapterWeek(getContext())); adapterDate = new AdapterDate(getContext()); gvDate.setAdapter(adapterDate); } /** * 签到成功的回调 * * @param onSignedSuccess */ public void setOnSignedSuccess(OnSignedSuccess onSignedSuccess) { adapterDate.setOnSignedSuccess(onSignedSuccess); } /** * 签到 */ public void setOnSigned(int postion) { adapterDate.setOnSigned(postion); } /** * 签到 */ public void setOnSigned(String date) { adapterDate.setOnSigned(date); } }
2021-12-21 23:37:17 708KB android 考勤打卡 日历
1
主要介为大家详细绍了微信小程序实现打卡日历功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
1
改组件为打卡日历组件,主要是作为一个日历显示,使用方法请查看该链接: https://blog.csdn.net/qq_41756580/article/details/106573280
1