实例介绍
Android例子源码使用百度定位和车联网天气查询
【实例截图】
【核心代码】
Weather
└── Weather
├── AndroidManifest.xml
├── assets
│ ├── BaiduNaviSDK_Resource_v1_0_0.png
│ └── channel
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── com
│ │ └── dzt
│ │ └── weather
│ │ ├── BDLocationClient$MyLocationListener.class
│ │ ├── BDLocationClient$OnLocationListener.class
│ │ ├── BDLocationClient.class
│ │ ├── BuildConfig.class
│ │ ├── constant
│ │ │ └── GlobalConstants.class
│ │ ├── DrawPicNum.class
│ │ ├── R$attr.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── utils
│ │ │ └── NetworkUtils.class
│ │ ├── WeatherActivity$asyncDownload.class
│ │ ├── WeatherActivity$FinishListener.class
│ │ ├── WeatherActivity$LocationListener.class
│ │ ├── WeatherActivity.class
│ │ ├── WeatherHandler.class
│ │ ├── WeatherInfo.class
│ │ ├── WeatherSource$GetSource.class
│ │ ├── WeatherSource$OnFinishListener.class
│ │ └── WeatherSource.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android_api_1.1_forsdk-615663872c87e355c3e44e3d69c29702.jar
│ │ ├── android_api_1.1_forsdk-b2fcc87ec3912493b34417e86e14aa04.jar
│ │ ├── android_api_1.1_forsdk-f2f9f79a4429819aaf2d932ab5ea7a63.jar
│ │ ├── android_api_1.1_forsdk-fbd86f84be02d5216703ae3273a3646f.jar
│ │ ├── android-support-v4-1d790cf2bcf5676cab343570aa922bfb.jar
│ │ ├── android-support-v4-6054b69d28934852f7de59f8d83e590c.jar
│ │ ├── android-support-v4-6ed0a3729e965248800c900e4533cfaa.jar
│ │ ├── android-support-v4-a82a29e2513b0f8c63727b528f2698eb.jar
│ │ ├── BaiduNaviSDK_v1_0_0-2095c50d7c0b25b0bfb5a6724d9e5829.jar
│ │ ├── BaiduNaviSDK_v1_0_0-744db307fb5b009f9465e7fce00b6bdf.jar
│ │ ├── BaiduNaviSDK_v1_0_0-a9bd695f7d9f1f801d586f46ec61239b.jar
│ │ ├── BaiduNaviSDK_v1_0_0-cca0a94527e05f456ce5563b45b9062f.jar
│ │ ├── locSDK_4.1-4960fe7f3aa23dee9c46c71a4849dd3b.jar
│ │ ├── locSDK_4.1-4d3fe6e92eb49ee89297c034ee9e4f74.jar
│ │ ├── locSDK_4.1-81abeac81a31c51448426cc05ad701e5.jar
│ │ ├── locSDK_4.1-fada60ca2d5b8f081bf37c9102797734.jar
│ │ ├── need_lib-3301e079cc230bb84320bea657762167.jar
│ │ ├── need_lib-49b1687c09e1c6a6050c33bd60e1c100.jar
│ │ ├── need_lib-64a155bddf9cadbc993aef587453f3a2.jar
│ │ └── need_lib-d06f807cf1919df991d19e0ffc53cc90.jar
│ ├── jarlist.cache
│ ├── res
│ │ ├── crunch
│ │ │ ├── drawable-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ ├── cityselector_gridview_card.9.png
│ │ │ │ ├── cityselector_locate_centigrade_0.png
│ │ │ │ ├── cityselector_locate_centigrade_1.png
│ │ │ │ ├── cityselector_locate_centigrade_2.png
│ │ │ │ ├── cityselector_locate_centigrade_3.png
│ │ │ │ ├── cityselector_locate_centigrade_4.png
│ │ │ │ ├── cityselector_locate_centigrade_5.png
│ │ │ │ ├── cityselector_locate_centigrade_6.png
│ │ │ │ ├── cityselector_locate_centigrade_7.png
│ │ │ │ ├── cityselector_locate_centigrade_8.png
│ │ │ │ ├── cityselector_locate_centigrade_9.png
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── main_image_location.png
│ │ │ │ ├── number_bg.png
│ │ │ │ └── phoneedit_backgnd.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── cityselector_gridview_card.9.png
│ │ │ ├── cityselector_locate_centigrade_0.png
│ │ │ ├── cityselector_locate_centigrade_1.png
│ │ │ ├── cityselector_locate_centigrade_2.png
│ │ │ ├── cityselector_locate_centigrade_3.png
│ │ │ ├── cityselector_locate_centigrade_4.png
│ │ │ ├── cityselector_locate_centigrade_5.png
│ │ │ ├── cityselector_locate_centigrade_6.png
│ │ │ ├── cityselector_locate_centigrade_7.png
│ │ │ ├── cityselector_locate_centigrade_8.png
│ │ │ ├── cityselector_locate_centigrade_9.png
│ │ │ ├── ic_launcher.png
│ │ │ ├── main_image_location.png
│ │ │ ├── number_bg.png
│ │ │ └── phoneedit_backgnd.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ └── Weather.apk
├── gen
│ └── com
│ └── dzt
│ └── weather
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ ├── android_api_1.1_forsdk.jar
│ ├── android-support-v4.jar
│ ├── armeabi
│ │ ├── libapp_BaiduNaviApplib_v1_0_0.so
│ │ ├── libCNPackage.so
│ │ ├── libejTTS.so
│ │ └── liblocSDK4b.so
│ ├── BaiduNaviSDK_v1_0_0.jar
│ ├── locSDK_4.1.jar
│ └── need_lib.jar
├── locSDK_4.0.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ ├── bg.jpg
│ │ ├── cityselector_gridview_card.9.png
│ │ ├── cityselector_locate_centigrade_0.png
│ │ ├── cityselector_locate_centigrade_1.png
│ │ ├── cityselector_locate_centigrade_2.png
│ │ ├── cityselector_locate_centigrade_3.png
│ │ ├── cityselector_locate_centigrade_4.png
│ │ ├── cityselector_locate_centigrade_5.png
│ │ ├── cityselector_locate_centigrade_6.png
│ │ ├── cityselector_locate_centigrade_7.png
│ │ ├── cityselector_locate_centigrade_8.png
│ │ ├── cityselector_locate_centigrade_9.png
│ │ ├── ic_launcher.png
│ │ ├── main_image_location.png
│ │ ├── number_bg.png
│ │ ├── phoneedit_backgnd.png
│ │ ├── weather_bg10.jpg
│ │ ├── weather_bg1.jpg
│ │ ├── weather_bg2.jpg
│ │ ├── weather_bg3.jpg
│ │ ├── weather_bg4.jpg
│ │ ├── weather_bg5.jpg
│ │ ├── weather_bg6.jpg
│ │ ├── weather_bg7.jpg
│ │ ├── weather_bg8.jpg
│ │ └── weather_bg9.jpg
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── activity_weather.xml
│ ├── menu
│ │ └── weather.xml
│ ├── values
│ │ ├── 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
└── dzt
└── weather
├── BDLocationClient.java
├── constant
│ └── GlobalConstants.java
├── DrawPicNum.java
├── utils
│ └── NetworkUtils.java
├── WeatherActivity.java
├── WeatherHandler.java
├── WeatherInfo.java
└── WeatherSource.java
44 directories, 150 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论