码迷,mamicode.com
首页 >  
搜索关键字:context    ( 11739个结果
Android四:sqllite
1、扩展类SQLiteOpenHelperxxSQLiteHelper extendsSQLiteOpenHelperpublic xxSQLiteHelper(Context context,String name,CursorFactory factory,int version){ surp....
分类:移动开发   时间:2014-10-15 20:21:21    阅读次数:169
network: Android 网络判断(wifi、3G与其他)
public class NetworkProber {  /**  * 网络是否可用  *  * @param activity  * @return  */  public static boolean isNetworkAvailable(Context context) {  ConnectivityManager connectivity = (Connectivit...
分类:移动开发   时间:2014-10-15 19:20:41    阅读次数:154
阿帕奇00-default配置文件(备忘)
# The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the Ser...
分类:其他好文   时间:2014-10-15 18:19:41    阅读次数:186
how tomcat works 五 servlet容器 上
servlet容器是用来处理请求servlet资源,并为Web客户端填充response对象的模块。在上一篇文章(也就是书的第四章)我们设计了SimpleContainer类,让他实现Container接口,也基本完成了容器的作用。但是我们得知道在实际的tomcat中有4类容器: Engine: 表示整个Catalina servlet引擎; Host: 包含一个或多个Context容器的虚拟...
分类:其他好文   时间:2014-10-15 15:59:11    阅读次数:248
CreateThread函数
当使用CreateProcess调用时,系统将创建一个进程和一个主线程。CreateThread将在主线程的基础上创建一个新线程,大致做如下步骤:   1在内核对象中分配一个线程标识/句柄,可供管理,由CreateThread返回   2把线程退出码置为STILL_ACTIVE,把线程挂起计数置1   3分配context结构   4分配两页的物理存储以准备栈,保护页设置为PAGE_REA...
分类:其他好文   时间:2014-10-15 15:46:00    阅读次数:216
android 数据存储路径
1、通过Context.getExternalFilesDir()方法可以获取到 SDCard/Android/data/你的应用的包名/files/ 目录,一般放一些长时间保存的数据通过Context.getExternalCacheDir()方法可以获取到 SDCard/Android/data...
分类:移动开发   时间:2014-10-15 10:23:10    阅读次数:184
Android 如何 画 柱状图 -------自定义View
实现了 柱状图 根据 SeekBar的滑动 改变的效果: 图示效果: 自定义View的代码: package com.example.coustomviewdemo; import android.R.color; import android.content.Context; import android.graphics.Canvas; import andro...
分类:移动开发   时间:2014-10-15 00:29:39    阅读次数:356
Bytes to be written to the stream exceed the Content-Length bytes size specified 解决方法
context.Response.ContentType=encode;using(StreamWriterwriter=newStreamWriter(context.Response.OutputStream,UTF8)){writer.Write(str);}上面代码常会报错:Bytes to...
分类:其他好文   时间:2014-10-14 20:15:59    阅读次数:193
Java 实现解释器(Interpreter)模式
/** * 声明一个抽象的解释操作 * @author stone * */ public interface Interpreter { public void interpret(Context context); //实际中,可以有个返回的类型,定义解释出的数据对象 } public class XmlSaxInterpreter implements Interpreter...
分类:编程语言   时间:2014-10-14 19:23:49    阅读次数:167
Android --------- 自定义VIew
package com.example.coustomviewdemo; import android.R.interpolator; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; impo...
分类:移动开发   时间:2014-10-14 19:22:59    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!