两种状态的改变通过动画来渐变,设置动画效果,一般采用的方式有以下几种:方式一:[UIView
beginAnimations:(NSString *) context:];[UIView
setAnimationDuration:];/*****这里插入需要产生动画的片段*****/ [UIV...
分类:
其他好文 时间:
2014-07-22 23:09:14
阅读次数:
270
self.myScrollView.frame =
CGRectMake(0,
self.stateNavigationHight-216+80,
320, [self
getUIScreenHight]-113);
[UIView
beginAnimations:@"roseImageViewAnimation"
context:(__bridge
void*)sel...
分类:
其他好文 时间:
2014-05-01 22:16:12
阅读次数:
362
通过Activity类的getSystemService方法可以获得指定的系统服务。
getSystemService方法只有一个String类型的参数,表示系统服务的ID,这个ID在整个Android系统中是唯一的。
Android SDK在android.content.Context类中定义了这些ID。...
分类:
移动开发 时间:
2014-05-01 17:57:26
阅读次数:
411
在MVC中我们可以很轻松的根据项目需求进行必要的信息转换,如设置默认的日期格式,自定义String类型的格式等等。。。
配置中我们需要自定义converseService:
class="org.springframework.context.support.ConversionServiceFactoryBean">
然后在:使用自定义的converse...
分类:
编程语言 时间:
2014-05-01 17:18:11
阅读次数:
311
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
文件存储数据使用了Java中的IO操作来进行文件的保存和读取。针对文件的操作主要是以下三种:
1.创建或打开文件
2.读取文件
3.删除文件
创建文件:
1.通过Context.openFileOutput获取输出流
/*
* name 打开或创建文件的名称
* mode 打开或创建文件的模式
*/
FileOut...
分类:
移动开发 时间:
2014-04-30 22:23:39
阅读次数:
452
转载请注明:
由于做一个项目,需要判断屏幕是否锁屏,发现网上方法很多,但是比较杂,现在进行总结一下:
总共有两类方法:
一、代码直接判定
二、接收广播
现在先说第一类方法(代码直接判定):
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