[Architecture Pattern] Singleton Locator目的组件自己提供Service Locator模式,用来降低组件的耦合度。情景在开发系统时,底层的Infrastructure Context、或是核心的Domain Context这些共享对象生成之后,会在系统的许多地...
分类:
其他好文 时间:
2014-06-18 22:54:43
阅读次数:
279
1. 借助android提供的shareduserid属性使多个不同的apt共用一个userid,以扫除权限壁垒,获取插件context,继而获取view并载入插件。这样的方式是建立在已经安装完毕的apt基础上的。样例和參考:1) 工作原理介绍:http://892848153.iteye.com/...
分类:
移动开发 时间:
2014-06-18 19:41:24
阅读次数:
304
1.首先什么是context?文档语焉不详,说是resource什么的,反正是没看懂,实际上可以认为它是一个指向parent对象的指针,受到那个parent对象的控制。2.为什么需要context?试想一下这个语句:ButtonmyButton=newButton(this);这个this就是con...
分类:
移动开发 时间:
2014-06-18 15:59:26
阅读次数:
189
1 package com.moniter.helperclasses; 2 3 import java.util.List; 4 5 import android.content.Context; 6 import android.view.LayoutInflater; 7 import ...
分类:
移动开发 时间:
2014-06-18 14:27:29
阅读次数:
175
Spring 的@Scheduled注解实现定时任务执行和调度
首先要配置我们的spring.xml --- 即spring的主配置文件(有的项目中叫做applicationContext.xml或context.xml)
xmlns 多加下面的内容、
[html] view
plaincopy
xmlns:task="http...
分类:
编程语言 时间:
2014-06-18 11:19:51
阅读次数:
430
和HandlerThread一样,IntentService也是Android替我们封装的一个Helper类,用来简化开发流程的。接下来分析源码的时候
你就明白是怎么回事了。IntentService是一个按需处理用Intent表示的异步请求的基础Service类,本质上还是Android Service。
客户端通过Context#startService(Intent);这样的代码来发起一...
分类:
其他好文 时间:
2014-06-17 18:56:21
阅读次数:
307
在Android开发中为了inflate一个布局文件,大体有2种方式,如下所示:
// 1. get a instance of LayoutInflater, then do whatever you want
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOU...
分类:
移动开发 时间:
2014-06-17 16:42:35
阅读次数:
360
1.写一个类继承TextView[java]view plaincopypackagecom.example.tt;importandroid.content.Context;importandroid.graphics.Rect;importandroid.util.AttributeSet;im...
分类:
其他好文 时间:
2014-06-17 15:43:33
阅读次数:
264
ListAdapter bookAdapter = new SimpleCursorAdapter(this,R.layout.booklist,cursor,from,to);提示:The constructor SimpleCursorAdapter(Context, int, Cursor,....
分类:
其他好文 时间:
2014-06-17 12:58:51
阅读次数:
472
近期学习web开发时,就遇到这个令人头疼的问题。百度谷歌了N遍,最终在博客http://blog.csdn.net/liu578182160/article/details/17266879中找到了问题的根源。开发环境:win7 32位旗舰版,jdk1.7_45,jre7,eclipse4.3.1 ...
分类:
移动开发 时间:
2014-06-17 00:44:50
阅读次数:
371