随笔分类 -  Android编程

状态栏的隐藏
该文被密码保护。

posted @ 2013-10-22 11:48 Cynthia&Sky

获取浏览器的homepage
摘要:主要知识点:跨进程访问数据首先修改浏览器源码:BrowserSettings.javaprivate static String getSDMCDefaultSharedPreferencesName(Context context) { return context.getPackageName() + "_preferences"; } private BrowserSettings(Context context) { mContext = context.getApplicationContext(); /*sky modi... 阅读全文

posted @ 2013-09-10 17:15 Cynthia&Sky

android 内存管理相关详解
该文被密码保护。

posted @ 2013-08-17 15:30 Cynthia&Sky

android init.rc分析
该文被密码保护。

posted @ 2013-08-13 17:26 Cynthia&Sky

getprop 获取android系统属性
摘要:Android属性系统 property_get/property_set (很透彻)http://www.blogjava.net/MEYE/articles/359773.htmlgetprop 获取android系统属性 http://www.cnblogs.com/lovemo1314/archive/2012/09/13/2683406.html还可以参考android内核剖析 中的19.5.1 阅读全文

posted @ 2013-08-09 17:45 Cynthia&Sky

android getevent/sendevent
该文被密码保护。

posted @ 2013-08-09 11:54 Cynthia&Sky

Binder机制学习
该文被密码保护。

posted @ 2013-07-09 16:53 Cynthia&Sky

android智能指针
该文被密码保护。

posted @ 2013-07-04 10:16 Cynthia&Sky

eclipse增加jar包方式对比
摘要:add external jars = 增加工程外部的包add jars = 增加工程内包add library = 增加一个库add class folder = 增加一个类文件夹add jar是表示从你的工程里添加JAR,前提是你把jar已经放到自己的工程目录里。add external jar表示这个jar的位置需要URI来定位,需要给出全路径。add library 是一些已经定义好的jar的集合,因为它们经常是一起用,所以简化了些操作,比如你做RCP开发的时候就会有个 plugin library包含了运行工程所需要的基本插件。add classes Loader -- 这个应该是 阅读全文

posted @ 2013-07-02 16:29 Cynthia&Sky

android和JAVA经典书籍和博文
该文被密码保护。

posted @ 2013-06-29 10:17 Cynthia&Sky

WebView的使用总结
该文被密码保护。

posted @ 2013-06-19 17:03 Cynthia&Sky

加载C库异常 java.lang.UnsatisfiedLinkError: Cannot load library: reloc_library
该文被密码保护。

posted @ 2013-05-08 17:39 Cynthia&Sky

Android是否应该完全退出应用程序
该文被密码保护。

posted @ 2013-05-08 17:12 Cynthia&Sky

网络异步加载海报机制(软引用,线程池,本地缓冲等机制结合)
该文被密码保护。

posted @ 2013-05-02 15:12 Cynthia&Sky

activity的4种启动方式和Bitmap的内存释放
该文被密码保护。

posted @ 2013-04-01 15:05 Cynthia&Sky

TabActivity增加多个Acitvity的生命周期解析
该文被密码保护。

posted @ 2013-03-29 15:55 Cynthia&Sky

android手机平板软件调试(包括更新ADT,logcat,adb基本命令等)
该文被密码保护。

posted @ 2013-03-28 17:44 Cynthia&Sky

android网络编程
该文被密码保护。

posted @ 2013-03-27 17:14 Cynthia&Sky

onConfigurationChanged的作用
摘要:API原文说明:android:configChangesLists configuration changes that the activity will handle itself. When a configuration change occurs at runtime, the activity is shut down and restarted by default, but declaring a configuration with this attribute will prevent the activity from being restarted. Instead, 阅读全文

posted @ 2013-03-26 14:21 Cynthia&Sky

疯狂Android讲义目录结构
摘要:第2章、Android应用程序界面设计,即View 2.2、布局管理(Layout):LinearLayout、TableLayout、FrameLayout、RelativeLayout; 2.3、基本界面组件:TextView、EditText; Button、ImageButton; 9Patch; RadioButton、CheckBox; ToggleButton;AnalogClock、DigitalClock; ImageView; 2.4、高级界面组件:AutoCompleteTextView; Spinner; DatePicker、TimePicker; Progres.. 阅读全文

posted @ 2013-03-21 11:15 Cynthia&Sky

导航