码迷,mamicode.com
首页 >  
搜索关键字:reinit context to    ( 11742个结果
EJB3.0与Spring
总的来看Spring+Hibernate与JPA很相似,它们都是基于pojo的持久化。 Hibernate Session和JPA Entity Manager基本上等价,但是要记住他们的两个重要区别。        Hibernate session是一个实体缓存也是一个ORM引擎的接口。        而JPA中这两个概念是分开的。Persistence context作为缓存而...
分类:编程语言   时间:2014-07-22 23:03:55    阅读次数:379
Android--图片剪裁
调用系统Intent剪裁图片 /** * 调用系统Intent剪裁图片 * @param context * @param uri * @param w * @param h */ public static void startP...
分类:移动开发   时间:2014-05-06 00:29:43    阅读次数:441
Android--单选对话框
import android.app.AlertDialog;import android.content.Context;import android.content.DialogInterface;import android.text.TextUtils;import android.widg...
分类:移动开发   时间:2014-05-06 00:07:01    阅读次数:307
android开源系列:CircleImageView自定义圆形控件的使用
1.自定义圆形控件github地址:https://github.com/hdodenhof/CircleImageView主要的类:package de.hdodenhof.circleimageview; import edu.njupt.zhb.main.R; import android.content.Context; import android.content.res.TypedAr...
分类:移动开发   时间:2014-05-03 23:56:53    阅读次数:3250
【Tomcat】严重: Context [/grouponAdminWeb] startup failed due to previous errors
1 tomcat 6600启动报错[root@localhost webapps]#     sh /usr/local/apache-tomcat-6.0.37_6600/bin/startup.sh Using CATALINA_BASE:   /usr/local/apache-tomcat-6.0.37_6600Using CATALINA_HOME:   /usr/local/apach...
分类:Web程序   时间:2014-05-03 20:52:53    阅读次数:571
android启动界面
启动界面的效果图: 实现的原理:在一个线程中让几幅图片进行循环显示,实现了动画的效果。 主要的实现类LoadingView是自定义控件,继承了ImageView,实现了Runnable接口 : package wht.android.loading; import android.content.Context; import android.graphics.Canvas; imp...
分类:移动开发   时间:2014-05-02 05:06:02    阅读次数:371
Struts2实现文件上传报错(一)
1、具体报错如下 2014-5-1 23:02:38 org.apache.catalina.core.StandardWrapperValve invoke 严重: Servlet.service() for servlet [jsp] in context with path [/UploadFile] threw exception [An exception occurred proce...
分类:其他好文   时间:2014-05-02 04:53:03    阅读次数:325
[HTML5 Canvas学习]使用颜色和透明度
在canvas中使用颜色和透明度,通过context的strokeStyle和fillStyle属性设置,strokeStyle和fillStyle的值可以是任意有效的css颜色字串。可以用RGB、RGBA、HSL、HSLA以及十六进制RGB标注来指定颜色,也可以通过 “yellow”、“sil.....
分类:Web程序   时间:2014-05-01 19:53:35    阅读次数:548
Android开发之使用BroadcastReceiver实时监听电量(源代码分享)
Android系统中实时的监听手机电量以及开机启动功能都是通过BroadcastReceiver组件实现的。我们可以动态注册这个类的一个实例通过Context.registerReceiver()方法或者静态注册,通过标记在androidmanifest . xml。注意:如果我们注册一个接收器在Activity.onResume()实现,我们应该注销Activity在Activity生命周期的o...
分类:移动开发   时间:2014-05-01 17:44:43    阅读次数:473
Android弹窗中的spinner异常解决办法
弹窗常用AlertDialog来袜,因为AlertDialog可以很方便的添加所要的项。比如确定/取消按钮,自定义的标题栏、自定义的信息布局等。在自定义布局时,比如我们采用LinearLayout来布局,然后再往LinearLayout中添加一些项,比如TextView、EditText等。这些都很容易实现。 不过,如果添加spinner,可能就会出问题了。找了很久,发现是context引起的。...
分类:移动开发   时间:2014-04-30 22:13:38    阅读次数:422
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!