实例介绍
Android项目实战--手机卫士26--内容提供者与内容观察者
【实例截图】
【核心代码】
4744302543360654466.rar
└── Security
├── AndroidManifest.xml
├── assets
├── bin
│ ├── aidl
│ │ ├── android
│ │ │ └── telephony
│ │ │ └── NeighboringCellInfo.aidl
│ │ └── com
│ │ └── android
│ │ └── internal
│ │ └── telephony
│ │ └── ITelephony.aidl
│ ├── AndroidManifest.xml
│ ├── classes
│ │ ├── android
│ │ │ └── telephony
│ │ │ └── NeighboringCellInfo.aidl
│ │ └── com
│ │ ├── android
│ │ │ └── internal
│ │ │ └── telephony
│ │ │ ├── ITelephony$Stub$Proxy.class
│ │ │ ├── ITelephony$Stub.class
│ │ │ ├── ITelephony.aidl
│ │ │ └── ITelephony.class
│ │ └── xiaobin
│ │ └── security
│ │ ├── adapter
│ │ │ └── MainUIAdapter.class
│ │ ├── BuildConfig.class
│ │ ├── dao
│ │ │ ├── AddressDao.class
│ │ │ ├── AppLockDao.class
│ │ │ └── BlackNumberDao.class
│ │ ├── domain
│ │ │ ├── AppInfo.class
│ │ │ ├── ContactInfo.class
│ │ │ ├── SmsInfo.class
│ │ │ └── UpdateInfo.class
│ │ ├── engine
│ │ │ ├── AppInfoProvider.class
│ │ │ ├── ContactInfoService.class
│ │ │ ├── DownloadTask.class
│ │ │ ├── GPSInfoProvider$MyLocationListener.class
│ │ │ ├── GPSInfoProvider.class
│ │ │ ├── NumberAddressService.class
│ │ │ ├── SmsService.class
│ │ │ ├── UpdateInfoParser.class
│ │ │ └── UpdateInfoService.class
│ │ ├── iservice
│ │ │ └── IService.class
│ │ ├── provider
│ │ │ └── AppLockProvider.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$raw.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R$xml.class
│ │ ├── R.class
│ │ ├── receiver
│ │ │ ├── BootCompleteReceiver.class
│ │ │ ├── CallPhoneReceiver.class
│ │ │ ├── MyAdminReceiver.class
│ │ │ └── SmsReceiver.class
│ │ ├── service
│ │ │ ├── AddressService$MyObserver.class
│ │ │ ├── AddressService$MyPhoneListener.class
│ │ │ ├── AddressService.class
│ │ │ ├── BackupSmsService$1.class
│ │ │ ├── BackupSmsService.class
│ │ │ ├── WatchDogService$1.class
│ │ │ ├── WatchDogService$MyBinder.class
│ │ │ ├── WatchDogService$MyObserver.class
│ │ │ └── WatchDogService.class
│ │ ├── ui
│ │ │ ├── AppLockActivity$1.class
│ │ │ ├── AppLockActivity$2.class
│ │ │ ├── AppLockActivity$3.class
│ │ │ ├── AppLockActivity$AppLockAdapter.class
│ │ │ ├── AppLockActivity$AppManagerViews.class
│ │ │ ├── AppLockActivity.class
│ │ │ ├── AppManagerActivity$1.class
│ │ │ ├── AppManagerActivity$2.class
│ │ │ ├── AppManagerActivity$3.class
│ │ │ ├── AppManagerActivity$4.class
│ │ │ ├── AppManagerActivity$AppManagerAdapter.class
│ │ │ ├── AppManagerActivity$AppManagerViews.class
│ │ │ ├── AppManagerActivity.class
│ │ │ ├── AToolActivity$1.class
│ │ │ ├── AToolActivity$2.class
│ │ │ ├── AToolActivity$3.class
│ │ │ ├── AToolActivity$4.class
│ │ │ ├── AToolActivity$5.class
│ │ │ ├── AToolActivity$6.class
│ │ │ ├── AToolActivity.class
│ │ │ ├── DragViewActivity.class
│ │ │ ├── LockActivity$MyConnection.class
│ │ │ ├── LockActivity.class
│ │ │ ├── LostProtectedActivity$1.class
│ │ │ ├── LostProtectedActivity.class
│ │ │ ├── MainActivity$1$1.class
│ │ │ ├── MainActivity$1$2.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity.class
│ │ │ ├── NumberSecurityActivity$1.class
│ │ │ ├── NumberSecurityActivity$2.class
│ │ │ ├── NumberSecurityActivity$3.class
│ │ │ ├── NumberSecurityActivity$4.class
│ │ │ ├── NumberSecurityActivity$5.class
│ │ │ ├── NumberSecurityActivity$NumberAdapter.class
│ │ │ ├── NumberSecurityActivity.class
│ │ │ ├── QueryNumberActivity.class
│ │ │ ├── SelectContactActivity$1.class
│ │ │ ├── SelectContactActivity$ContactViews.class
│ │ │ ├── SelectContactActivity$SelectContactAdapter.class
│ │ │ ├── SelectContactActivity.class
│ │ │ ├── SettingActivity$1.class
│ │ │ ├── SettingActivity.class
│ │ │ ├── SetupGuide1Activity.class
│ │ │ ├── SetupGuide2Activity$1.class
│ │ │ ├── SetupGuide2Activity.class
│ │ │ ├── SetupGuide3Activity.class
│ │ │ ├── SetupGuide4Activity$1.class
│ │ │ ├── SetupGuide4Activity$2.class
│ │ │ ├── SetupGuide4Activity$3.class
│ │ │ ├── SetupGuide4Activity.class
│ │ │ ├── SplashActivity$1.class
│ │ │ ├── SplashActivity$2.class
│ │ │ ├── SplashActivity$3.class
│ │ │ ├── SplashActivity$4.class
│ │ │ ├── SplashActivity$5.class
│ │ │ ├── SplashActivity$UpdateTask.class
│ │ │ └── SplashActivity.class
│ │ └── utils
│ │ ├── DBHelper.class
│ │ └── MD5Encoder.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-441579485a77fb071c50258496481860.jar
│ │ └── annotations-d5b7990a263494cbb5c0218b184a1f0d.jar
│ ├── jarlist.cache
│ ├── res
│ │ ├── drawable
│ │ │ ├── app.png
│ │ │ ├── guide2.png
│ │ │ ├── guide3.png
│ │ │ ├── guide4.png
│ │ │ ├── img1.png
│ │ │ ├── img2.png
│ │ │ ├── img3.png
│ │ │ ├── lock.png
│ │ │ ├── next.png
│ │ │ ├── notification.png
│ │ │ ├── previous.png
│ │ │ ├── unlock.png
│ │ │ ├── widget01.png
│ │ │ ├── widget02.png
│ │ │ ├── widget03.png
│ │ │ ├── widget04.png
│ │ │ ├── widget05.png
│ │ │ ├── widget06.png
│ │ │ ├── widget07.png
│ │ │ ├── widget08.png
│ │ │ └── widget09.png
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ └── Security.apk
├── gen
│ ├── android
│ │ └── telephony
│ └── com
│ ├── android
│ │ └── internal
│ │ └── telephony
│ │ └── ITelephony.java
│ └── xiaobin
│ └── security
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── anim
│ │ ├── alpha_in.xml
│ │ ├── alpha_out.xml
│ │ ├── cycle_7.xml
│ │ ├── shake.xml
│ │ ├── translate_in.xml
│ │ └── translate_out.xml
│ ├── drawable
│ │ ├── app.png
│ │ ├── button_normal.xml
│ │ ├── button_selector.xml
│ │ ├── call_locate_blue.9.png
│ │ ├── call_locate_gray.9.png
│ │ ├── call_locate_green.9.png
│ │ ├── call_locate_orange.9.png
│ │ ├── call_locate_white.9.png
│ │ ├── guide2.png
│ │ ├── guide3.png
│ │ ├── guide4.png
│ │ ├── img1.png
│ │ ├── img2.png
│ │ ├── img3.png
│ │ ├── item_background_selector.xml
│ │ ├── item_background_select.xml
│ │ ├── local_popup_bg.9.png
│ │ ├── lock.png
│ │ ├── logo.jpg
│ │ ├── next.png
│ │ ├── notification.png
│ │ ├── previous.png
│ │ ├── text_background.xml
│ │ ├── title_background.xml
│ │ ├── unlock.png
│ │ ├── widget01.png
│ │ ├── widget02.png
│ │ ├── widget03.png
│ │ ├── widget04.png
│ │ ├── widget05.png
│ │ ├── widget06.png
│ │ ├── widget07.png
│ │ ├── widget08.png
│ │ └── widget09.png
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── app_lock_item.xml
│ │ ├── app_lock.xml
│ │ ├── app_manager_item.xml
│ │ ├── app_manager.xml
│ │ ├── atool.xml
│ │ ├── contact_item.xml
│ │ ├── drag_view.xml
│ │ ├── first_dialog.xml
│ │ ├── lock.xml
│ │ ├── login_dialog.xml
│ │ ├── lost_protected.xml
│ │ ├── main_item.xml
│ │ ├── main.xml
│ │ ├── number_security_item.xml
│ │ ├── number_security.xml
│ │ ├── popup_item.xml
│ │ ├── query_number.xml
│ │ ├── select_contact.xml
│ │ ├── setting.xml
│ │ ├── setup_guide1.xml
│ │ ├── setup_guide2.xml
│ │ ├── setup_guide3.xml
│ │ ├── setup_guide4.xml
│ │ ├── show_location.xml
│ │ └── splash.xml
│ ├── menu
│ │ └── number.xml
│ ├── raw
│ │ └── jxmzf.mp3
│ ├── values
│ │ ├── color.xml
│ │ ├── config.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-sw600dp
│ │ └── dimens.xml
│ ├── values-sw720dp-land
│ │ └── dimens.xml
│ └── xml
│ └── myadmin.xml
└── src
├── android
│ └── telephony
│ └── NeighboringCellInfo.aidl
└── com
├── android
│ └── internal
│ └── telephony
│ └── ITelephony.aidl
└── xiaobin
└── security
├── adapter
│ └── MainUIAdapter.java
├── dao
│ ├── AddressDao.java
│ ├── AppLockDao.java
│ └── BlackNumberDao.java
├── domain
│ ├── AppInfo.java
│ ├── ContactInfo.java
│ ├── SmsInfo.java
│ └── UpdateInfo.java
├── engine
│ ├── AppInfoProvider.java
│ ├── ContactInfoService.java
│ ├── DownloadTask.java
│ ├── GPSInfoProvider.java
│ ├── NumberAddressService.java
│ ├── SmsService.java
│ ├── UpdateInfoParser.java
│ └── UpdateInfoService.java
├── iservice
│ └── IService.java
├── provider
│ └── AppLockProvider.java
├── receiver
│ ├── BootCompleteReceiver.java
│ ├── CallPhoneReceiver.java
│ ├── MyAdminReceiver.java
│ └── SmsReceiver.java
├── service
│ ├── AddressService.java
│ ├── BackupSmsService.java
│ └── WatchDogService.java
├── ui
│ ├── AppLockActivity.java
│ ├── AppManagerActivity.java
│ ├── AToolActivity.java
│ ├── DragViewActivity.java
│ ├── LockActivity.java
│ ├── LostProtectedActivity.java
│ ├── MainActivity.java
│ ├── NumberSecurityActivity.java
│ ├── QueryNumberActivity.java
│ ├── SelectContactActivity.java
│ ├── SettingActivity.java
│ ├── SetupGuide1Activity.java
│ ├── SetupGuide2Activity.java
│ ├── SetupGuide3Activity.java
│ ├── SetupGuide4Activity.java
│ └── SplashActivity.java
└── utils
├── DBHelper.java
└── MD5Encoder.java
80 directories, 277 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论