java实现定时自动打卡脚本_android 定时自动上班手机打卡签到实例

【实例简介】

现在很多单位上下班采用手机打卡签到,此实例能做到自动签到功能。要求android4.2以上,并且有root.

【实例截图】

【核心代码】

ClickwWork

└── ClickwWork

├── AndroidManifest.xml

├── bin

│   ├── AndroidManifest.xml

│   ├── classes

│   │   └── com

│   │   └── example

│   │   ├── clickservice

│   │   │   ├── AMReceiver.class

│   │   │   ├── BackGroundService$1.class

│   │   │   ├── BackGroundService.class

│   │   │   ├── BootBroadcastReceiver.class

│   │   │   ├── BuildConfig.class

│   │   │   ├── cmdRoot.class

│   │   │   ├── fileoperation.class

│   │   │   ├── gettime.class

│   │   │   ├── MyActivity$10.class

│   │   │   ├── MyActivity$11.class

│   │   │   ├── MyActivity$12.class

│   │   │   ├── MyActivity$1.class

│   │   │   ├── MyActivity$2.class

│   │   │   ├── MyActivity$3$1.class

│   │   │   ├── MyActivity$3.class

│   │   │   ├── MyActivity$4$1.class

│   │   │   ├── MyActivity$4.class

│   │   │   ├── MyActivity$5.class

│   │   │   ├── MyActivity$6.class

│   │   │   ├── MyActivity$7.class

│   │   │   ├── MyActivity$8.class

│   │   │   ├── MyActivity$9.class

│   │   │   ├── MyActivity.class

│   │   │   ├── NetworkAccess.class

│   │   │   ├── PMReceiver.class

│   │   │   ├── R$attr.class

│   │   │   ├── R$color.class

│   │   │   ├── R$dimen.class

│   │   │   ├── R$drawable.class

│   │   │   ├── R$id.class

│   │   │   ├── R$layout.class

│   │   │   ├── R$menu.class

│   │   │   ├── R$string.class

│   │   │   ├── R$style.class

│   │   │   ├── R.class

│   │   │   └── setalarm.class

│   │   └── shareutil

│   │   └── SharepreferencesUtilSystemSettings.class

│   ├── classes.dex

│   ├── ClickService.apk

│   ├── dexedLibs

│   │   └── android-support-v4-e929f64a33cbc07b74362212fe2fc2e6.jar

│   ├── jarlist.cache

│   ├── res

│   │   └── crunch

│   │   ├── drawable

│   │   │   ├── checkbox1_off.png

│   │   │   ├── checkbox1_on.png

│   │   │   ├── checkbox2_off.png

│   │   │   ├── checkbox2_on.png

│   │   │   ├── checkbox3_off.png

│   │   │   ├── checkbox3_on.png

│   │   │   ├── checkbox4_off.png

│   │   │   ├── checkbox4_on.png

│   │   │   ├── checkbox5_off.png

│   │   │   ├── checkbox5_on.png

│   │   │   ├── checkbox6_off.png

│   │   │   ├── checkbox6_on.png

│   │   │   ├── checkbox7_off.png

│   │   │   ├── checkbox7_on.png

│   │   │   ├── checkboxbg.png

│   │   │   ├── clock.png

│   │   │   ├── p1.png

│   │   │   ├── toggle_close.png

│   │   │   └── toggle_open.png

│   │   ├── drawable-hdpi

│   │   │   ├── ic1.png

│   │   │   └── ic_launcher.png

│   │   ├── drawable-mdpi

│   │   │   └── ic_launcher.png

│   │   ├── drawable-xhdpi

│   │   │   └── ic_launcher.png

│   │   └── drawable-xxhdpi

│   │   └── ic_launcher.png

│   └── resources.ap_

├── gen

│   └── com

│   └── example

│   └── clickservice

│   ├── BuildConfig.java

│   └── R.java

├── ic_launcher-web.png

├── libs

│   └── android-support-v4.jar

├── proguard-project.txt

├── project.properties

├── res

│   ├── drawable

│   │   ├── checkbox1_off.png

│   │   ├── checkbox1_on.png

│   │   ├── checkbox1.xml

│   │   ├── checkbox2_off.png

│   │   ├── checkbox2_on.png

│   │   ├── checkbox2.xml

│   │   ├── checkbox3_off.png

│   │   ├── checkbox3_on.png

│   │   ├── checkbox3.xml

│   │   ├── checkbox4_off.png

│   │   ├── checkbox4_on.png

│   │   ├── checkbox4.xml

│   │   ├── checkbox5_off.png

│   │   ├── checkbox5_on.png

│   │   ├── checkbox5.xml

│   │   ├── checkbox6_off.png

│   │   ├── checkbox6_on.png

│   │   ├── checkbox6.xml

│   │   ├── checkbox7_off.png

│   │   ├── checkbox7_on.png

│   │   ├── checkbox7.xml

│   │   ├── checkboxbg.png

│   │   ├── checkbox_style.xml

│   │   ├── clock.png

│   │   ├── p1.png

│   │   ├── shape.xml

│   │   ├── togglebutton.xml

│   │   ├── toggle_close.png

│   │   └── toggle_open.png

│   ├── drawable-hdpi

│   │   ├── ic1.png

│   │   └── ic_launcher.png

│   ├── drawable-mdpi

│   │   └── ic_launcher.png

│   ├── drawable-xhdpi

│   │   └── ic_launcher.png

│   ├── drawable-xxhdpi

│   │   └── ic_launcher.png

│   ├── layout

│   │   ├── activity_main.xml

│   │   └── gettime.xml

│   ├── menu

│   │   └── main.xml

│   ├── values

│   │   ├── colors.xml

│   │   ├── dimens.xml

│   │   ├── strings.xml

│   │   └── styles.xml

│   ├── values-sw600dp

│   │   └── dimens.xml

│   ├── values-sw720dp-land

│   │   └── dimens.xml

│   ├── values-v11

│   │   └── styles.xml

│   └── values-v14

│   └── styles.xml

└── src

└── com

└── example

├── clickservice

│   ├── AMReceiver.java

│   ├── BackGroundService.java

│   ├── BootBroadcastReceiver.java

│   ├── cmdRoot.java

│   ├── fileoperation.java

│   ├── gettime.java

│   ├── MyActivity.java

│   ├── NetworkAccess.java

│   ├── PMReceiver.java

│   └── setalarm.java

└── shareutil

└── SharepreferencesUtilSystemSettings.java

38 directories, 130 files


版权声明:本文为weixin_30019895原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。