android 基本功能
文章平均质量分 72
苏斯哈
沟通表达能力,优秀的沟通表达能力,良好的理解能力;<br/>逻辑思维能力,思路清晰,逻辑思维能力强;<br/>团队协作能力,良好的团队协作意识;<br/>性格描述,性格偏内向、性格温和、有主见;<br/>工作态度,工作认真、严谨、热情、主动、积极、进取、能虚心接受同事意见、能学习同事的长处;<br/>个人品质,诚信、有责任感、敬业;<br/>综合,喜欢从事有挑战性的工作,适应能力强,做事能持之以恒,用心钻研
展开
-
通过TelephonyManager获取本地手机信息
在应用软件上 有时候我们需要获取本地手机的电话号码,网络运营商等信息,下面demo是获取这些信息的 在代码里面都有注释 首先是布局 很简单 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:原创 2012-11-02 11:30:38 · 2222 阅读 · 0 评论 -
如何在本应用中打开别的应用程序
最近做的一个项目要用到导航功能,因为时间关系,没有在本应用中实现,偷了个懒,就准备点击导航按钮,直接打开百度地图导航,因此写了个小demo进行测试,因为跳转到百度地图要用到百度地图的包名和启动activity (这个不知道的看代码,代码有注释),因此先反编译百度地图,我用的是apktool,只要求得到AndroidManifest.xml即可。apktool网上有很多,建议下载最新版本,因为用旧的原创 2012-11-02 14:21:51 · 656 阅读 · 0 评论 -
Bound service
A bound service is the server in a client-server interface. A bound service allows components(such as activities) to bind to the service, send requests, receive responses, and even perform interproces翻译 2013-05-16 14:39:31 · 572 阅读 · 0 评论 -
Service 详解
网上关于service的各种阐述五花八门。有些带有很深的写作者的主观理解,如果写作者有一点偏颇的话,对阅读者容易造成云深雾里的感觉。其实读api 一切都描述的很详细,这是一篇service的api 文档。 每一段我都会翻译过来 。A Service is an application component that can perform long-running operations in t翻译 2013-05-15 13:53:12 · 827 阅读 · 0 评论 -
SharedPreferences 保存和读取对象
public class SharedCache { /** * boolean 值放入缓存 * * @param context * @param key * @param value */ public static void putBoolean(Context context, String key, boolean value) { context.g原创 2014-09-01 13:47:42 · 453 阅读 · 0 评论