1.图片的处理,CoreImage添加CoreImage的属性,并生成synthesize@property
(nonatomic,strong) CIContext *context;@property (nonatomic,strong) CIFilter
*filter1;@property ...
分类:
其他好文 时间:
2014-07-22 23:14:15
阅读次数:
369
What is the Execution Context & Stack in
JavaScript?In this post I will take an in-depth look at one of the most
fundamental parts of JavaScript, theE...
分类:
编程语言 时间:
2014-07-22 23:12:16
阅读次数:
608
两种状态的改变通过动画来渐变,设置动画效果,一般采用的方式有以下几种:方式一:[UIView
beginAnimations:(NSString *) context:];[UIView
setAnimationDuration:];/*****这里插入需要产生动画的片段*****/ [UIV...
分类:
其他好文 时间:
2014-07-22 23:09:14
阅读次数:
270
LayoutInflater
inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);View
layout = inflater.inflate(R.layout.main, null);...
分类:
其他好文 时间:
2014-05-01 13:10:22
阅读次数:
310
Context----------------访问全局信息的apiActivityWindowIntent/BundleImageView----------onclickView-----自定义view
分类:
移动开发 时间:
2014-05-01 05:59:06
阅读次数:
381
using System;using System.Web;public class
Search_Book : IHttpHandler { public void ProcessRequest (HttpContext context) {
context.Respo...
分类:
其他好文 时间:
2014-04-30 23:28:59
阅读次数:
372
var aQuery = function(selector, context) {return
new aQuery.prototype.init();//工厂方法创建一个对象}aQuery.prototype = {init: function()
{return this;},getAge: ...
分类:
Web程序 时间:
2014-04-29 16:31:46
阅读次数:
511
转载请注明:
由于做一个项目,需要判断屏幕是否锁屏,发现网上方法很多,但是比较杂,现在进行总结一下:
总共有两类方法:
一、代码直接判定
二、接收广播
现在先说第一类方法(代码直接判定):
1、通过PowerManager的isScreenOn方法,代码如下:
PowerManager pm = (PowerManager) context.getSystemServ...
分类:
移动开发 时间:
2014-04-29 13:35:21
阅读次数:
386
//自定义布局
public class MyLayout extends RelativeLayout{
private Context mContext;
private ICallBack mCallBack;
public void setCallBack(ICallBack cb){
mCallBack = cb;
}...
分类:
其他好文 时间:
2014-04-29 13:18:21
阅读次数:
324
变量声明、函数声明为何会提升?js执行时是如何查找变量的?JavaScript中最基本的部分——执行上下文(execution
context)什么是执行上下文?当JavaScript代码运行,执行环境非常重要,有下面几种不同的情况:全局代码——你的代码首次执行的默认环境。函数代码——每当进入一个函...
分类:
编程语言 时间:
2014-04-29 11:13:45
阅读次数:
487