码迷,mamicode.com
首页 >  
搜索关键字:reinit context to    ( 11742个结果
[Architecture Pattern] Singleton Locator
[Architecture Pattern] Singleton Locator目的组件自己提供Service Locator模式,用来降低组件的耦合度。情景在开发系统时,底层的Infrastructure Context、或是核心的Domain Context这些共享对象生成之后,会在系统的许多地...
分类:其他好文   时间:2014-06-18 22:54:43    阅读次数:279
有关android 应用的plugin框架调研
1. 借助android提供的shareduserid属性使多个不同的apt共用一个userid,以扫除权限壁垒,获取插件context,继而获取view并载入插件。这样的方式是建立在已经安装完毕的apt基础上的。样例和參考:1) 工作原理介绍:http://892848153.iteye.com/...
分类:移动开发   时间:2014-06-18 19:41:24    阅读次数:304
关于Android Context一些总结
1.首先什么是context?文档语焉不详,说是resource什么的,反正是没看懂,实际上可以认为它是一个指向parent对象的指针,受到那个parent对象的控制。2.为什么需要context?试想一下这个语句:ButtonmyButton=newButton(this);这个this就是con...
分类:移动开发   时间:2014-06-18 15:59:26    阅读次数:189
蛋疼的Android BaseAdapter
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 的@Scheduled注解实现定时任务执行和调度 首先要配置我们的spring.xml   ---  即spring的主配置文件(有的项目中叫做applicationContext.xml或context.xml) xmlns 多加下面的内容、 [html] view plaincopy xmlns:task="http...
分类:编程语言   时间:2014-06-18 11:19:51    阅读次数:430
IntentService源码分析
和HandlerThread一样,IntentService也是Android替我们封装的一个Helper类,用来简化开发流程的。接下来分析源码的时候 你就明白是怎么回事了。IntentService是一个按需处理用Intent表示的异步请求的基础Service类,本质上还是Android Service。 客户端通过Context#startService(Intent);这样的代码来发起一...
分类:其他好文   时间:2014-06-17 18:56:21    阅读次数:307
Android中将xml布局文件转化为View树的过程分析(下)-- LayoutInflater源码分析
在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
TextView不用获取焦点也能实现跑马灯
1.写一个类继承TextView[java]view plaincopypackagecom.example.tt;importandroid.content.Context;importandroid.graphics.Rect;importandroid.util.AttributeSet;im...
分类:其他好文   时间:2014-06-17 15:43:33    阅读次数:264
SimpleCursorAdapter(Context, int, Cursor, String[], int[]) is deprecated???
ListAdapter bookAdapter = new SimpleCursorAdapter(this,R.layout.booklist,cursor,from,to);提示:The constructor SimpleCursorAdapter(Context, int, Cursor,....
分类:其他好文   时间:2014-06-17 12:58:51    阅读次数:472
There is no Action mapped for namespace [/] and action name [Login] associated with context path [/e
近期学习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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!