实例介绍
总共有七个小程序,都是android应用挺实用的,适合新手学习
【实例截图】
【核心代码】
7个经典Android应用程序实例源代码
└── 7个经典Android应用程序实例源代码
├── CityWeather
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── CityWeather.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── CityWeather
│ │ │ ├── CityWeather$1.class
│ │ │ ├── CityWeather$2.class
│ │ │ ├── CityWeather.class
│ │ │ ├── ConstData.class
│ │ │ ├── GoogleWeatherHandler.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$color.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R.class
│ │ │ ├── SingleWeatherInfoView.class
│ │ │ ├── WeatherCurrentCondition.class
│ │ │ ├── WeatherForecastCondition.class
│ │ │ └── WeatherSet.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── CityWeather
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── bg.jpg
│ │ │ └── icon.png
│ │ ├── layout
│ │ │ └── main.xml
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── CityWeather
│ ├── CityWeather.java
│ ├── ConstData.java
│ ├── GoogleWeatherHandler.java
│ ├── SingleWeatherInfoView.java
│ ├── WeatherCurrentCondition.java
│ ├── WeatherForecastCondition.java
│ └── WeatherSet.java
├── FileManager
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── FileManager.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── FileManager
│ │ │ ├── FileManager$1.class
│ │ │ ├── FileManager$10.class
│ │ │ ├── FileManager$11$1$1.class
│ │ │ ├── FileManager$11$1$2.class
│ │ │ ├── FileManager$11$1.class
│ │ │ ├── FileManager$11$2.class
│ │ │ ├── FileManager$11$3.class
│ │ │ ├── FileManager$11$4$1.class
│ │ │ ├── FileManager$11$4$2.class
│ │ │ ├── FileManager$11$4.class
│ │ │ ├── FileManager$11$5.class
│ │ │ ├── FileManager$11.class
│ │ │ ├── FileManager$2.class
│ │ │ ├── FileManager$3.class
│ │ │ ├── FileManager$4.class
│ │ │ ├── FileManager$5.class
│ │ │ ├── FileManager$6.class
│ │ │ ├── FileManager$7.class
│ │ │ ├── FileManager$8$1.class
│ │ │ ├── FileManager$8$2.class
│ │ │ ├── FileManager$8.class
│ │ │ ├── FileManager$9.class
│ │ │ ├── FileManager.class
│ │ │ ├── IconifiedText.class
│ │ │ ├── IconifiedTextListAdapter.class
│ │ │ ├── IconifiedTextView.class
│ │ │ ├── R$array.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ └── R.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── FileManager
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── addfolderr.png
│ │ │ ├── audio.png
│ │ │ ├── delete.png
│ │ │ ├── folder.png
│ │ │ ├── goroot.png
│ │ │ ├── icon.png
│ │ │ ├── image.png
│ │ │ ├── packed.png
│ │ │ ├── paste.png
│ │ │ ├── text.png
│ │ │ ├── uponelevel.png
│ │ │ ├── video.png
│ │ │ └── webtext.png
│ │ ├── layout
│ │ │ ├── dialog.xml
│ │ │ └── rename.xml
│ │ └── values
│ │ ├── fileendings.xml
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── FileManager
│ ├── FileManager.java
│ ├── IconifiedText.java
│ ├── IconifiedTextListAdapter.java
│ └── IconifiedTextView.java
├── MobileMap
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── MobileMap.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── MobileMap
│ │ │ ├── ConstData.class
│ │ │ ├── LocationOverlay.class
│ │ │ ├── MobileMap$1.class
│ │ │ ├── MobileMap$2.class
│ │ │ ├── MobileMap$3.class
│ │ │ ├── MobileMap$4.class
│ │ │ ├── MobileMap$5.class
│ │ │ ├── MobileMap$6.class
│ │ │ ├── MobileMap.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ └── R.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── MobileMap
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── exit.png
│ │ │ ├── icon.png
│ │ │ ├── mark.gif
│ │ │ ├── search.png
│ │ │ ├── selectcity.png
│ │ │ └── viewmode.png
│ │ ├── layout
│ │ │ ├── dialog.xml
│ │ │ └── main.xml
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── MobileMap
│ ├── ConstData.java
│ ├── LocationOverlay.java
│ └── MobileMap.java
├── MusicPlayer
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── MusicPlayer.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── MusicPlayer
│ │ │ ├── MusicInfoController.class
│ │ │ ├── MusicList$1.class
│ │ │ ├── MusicList$2.class
│ │ │ ├── MusicList$3.class
│ │ │ ├── MusicList$4.class
│ │ │ ├── MusicList.class
│ │ │ ├── MusicListAdapter.class
│ │ │ ├── MusicPlayerApp.class
│ │ │ ├── MusicPlayerService$1.class
│ │ │ ├── MusicPlayerService$2.class
│ │ │ ├── MusicPlayerService$LocalBinder.class
│ │ │ ├── MusicPlayerService.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ └── R.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── MusicPlayer
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── bg.jpg
│ │ │ └── icon.png
│ │ ├── layout
│ │ │ └── list_layout.xml
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── MusicPlayer
│ ├── MusicInfoController.java
│ ├── MusicList.java
│ ├── MusicPlayerApp.java
│ └── MusicPlayerService.java
├── MyContacts
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── MyContacts.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── MyContacts
│ │ │ ├── ContactColumn.class
│ │ │ ├── ContactEditor$1.class
│ │ │ ├── ContactEditor$2.class
│ │ │ ├── ContactEditor.class
│ │ │ ├── ContactView.class
│ │ │ ├── ContactsProvider.class
│ │ │ ├── DBHelper.class
│ │ │ ├── MyContacts.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ └── R.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── MyContacts
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── add.png
│ │ │ ├── bg.jpg
│ │ │ ├── calluser.png
│ │ │ ├── edituser.png
│ │ │ ├── exit.png
│ │ │ ├── icon.png
│ │ │ ├── listuser.png
│ │ │ ├── remove.png
│ │ │ ├── sendsms.png
│ │ │ └── viewuser.png
│ │ ├── layout
│ │ │ ├── editorcontacts.xml
│ │ │ └── viewuser.xml
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── MyContacts
│ ├── ContactColumn.java
│ ├── ContactEditor.java
│ ├── ContactView.java
│ ├── ContactsProvider.java
│ ├── DBHelper.java
│ └── MyContacts.java
├── RingProfile
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── RingProfile.apk
│ │ ├── classes.dex
│ │ ├── com
│ │ │ └── yarin
│ │ │ └── android
│ │ │ └── RingProfile
│ │ │ ├── R$attr.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R.class
│ │ │ ├── RingBroadcastReceiver.class
│ │ │ ├── RingProfile$1.class
│ │ │ ├── RingProfile$10.class
│ │ │ ├── RingProfile$2.class
│ │ │ ├── RingProfile$3.class
│ │ │ ├── RingProfile$4.class
│ │ │ ├── RingProfile$5.class
│ │ │ ├── RingProfile$6.class
│ │ │ ├── RingProfile$7.class
│ │ │ ├── RingProfile$8.class
│ │ │ ├── RingProfile$9.class
│ │ │ └── RingProfile.class
│ │ └── resources.ap_
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ └── yarin
│ │ └── android
│ │ └── RingProfile
│ │ └── R.java
│ ├── res
│ │ ├── drawable
│ │ │ ├── addprofile.png
│ │ │ ├── bg.jpg
│ │ │ ├── down.png
│ │ │ ├── icon.png
│ │ │ ├── mute.png
│ │ │ ├── timeprofile.png
│ │ │ ├── up.png
│ │ │ └── vibrate.png
│ │ ├── layout
│ │ │ └── main.xml
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── yarin
│ └── android
│ └── RingProfile
│ ├── RingBroadcastReceiver.java
│ └── RingProfile.java
├── Technique Resource Navigation.CHM
└── TodayDate
├── AndroidManifest.xml
├── bin
│ ├── TodayDate.apk
│ ├── classes.dex
│ ├── com
│ │ └── yarin
│ │ └── android
│ │ └── TodayDate
│ │ ├── R$attr.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$string.class
│ │ ├── R$xml.class
│ │ ├── R.class
│ │ ├── TodayDate.class
│ │ └── TodayDateSmall.class
│ └── resources.ap_
├── default.properties
├── gen
│ └── com
│ └── yarin
│ └── android
│ └── TodayDate
│ └── R.java
├── res
│ ├── drawable
│ │ ├── bg.9.png
│ │ ├── bg2.9.png
│ │ ├── bgblack.png
│ │ ├── bgblacksmall.png
│ │ └── icon.png
│ ├── layout
│ │ ├── widget_layout.xml
│ │ └── widget_layout_small.xml
│ ├── values
│ │ └── strings.xml
│ └── xml
│ ├── widget.xml
│ └── widget_small.xml
└── src
└── com
└── yarin
└── android
└── TodayDate
├── TodayDate.java
└── TodayDateSmall.java
142 directories, 261 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论