现在没事儿搞搞launcher,就用到了抽屉效果,纯属自己瞎胡闹,玩呢。这里可以隐藏抽屉打开后的手柄,点击返回按钮,又再次恢复。这里也写了个小球震荡回弹的效果。SlidingDrawer的实现,同时何以隐藏SlidingDrawer的handle,在抽屉打开时处于隐藏状态。当SlidingDrawe...
分类:
其他好文 时间:
2014-08-07 21:42:40
阅读次数:
292
网址:http://www.helloweba.com/view-blog-191.html源码下载地址:http://files.cnblogs.com/h07061108/php%E9%AA%8C%E8%AF%81%E7%A0%81.rar
分类:
Web程序 时间:
2014-08-07 18:48:00
阅读次数:
253
共享最新全国移动联通LBS基站数据升级包,已经上传到CNBLOGS空间上,大家可以下载。http://files.cnblogs.com/topwang-com/全国移动联通电信基站数据(2014年7月更新升级包).rar
分类:
移动开发 时间:
2014-08-07 12:56:09
阅读次数:
300
#自搭建了个人博客有需要交流学习的可以访问www.wpython.com#!/usr/bin/envpython
importdatetime,os,sys,shutil
log_path=‘/alidata/log/nginx/access/‘
log_file=‘www.wpython.com.log‘
yesterday=(datetime.datetime.now()-datetime.timedelta(days=1))
try:
os.makedir..
分类:
编程语言 时间:
2014-08-07 07:32:10
阅读次数:
267
#include
main()
{
struct cmplx{int x;int y;}
cnum[2]={1,3,2,7};
printf("%d\n",cnum[0].y/cnum[0].x*cnum[1].x);
}...
分类:
其他好文 时间:
2014-08-06 23:13:52
阅读次数:
262
$text="
1 梦幻西游 216406 2014-01-21 资料片
2 炉石传说 15905 2014-01-24 公测
3 新大话西游 214465 2002-08-01 公测
4 问道 11322 2006-04-22 公测
5 沃土 10094 2014-04-23 内测
6 QQ仙灵 10056 2014-06-06 公测
7 神武 10011 2010-09-17 公测
8 大侠Q...
分类:
其他好文 时间:
2014-08-06 10:27:21
阅读次数:
279
这是3月份某客户的情况,原因是server硬件故障后进行更换之后,业务翻译偶尔出现提交缓慢的情况。我们先来看下awr的情况。我们能够看到,该系统的load profile信息事实上并不高,每秒才21个transaction。先来看看top5events:从top 5event,我们能够发现,log ...
分类:
其他好文 时间:
2014-08-05 13:48:49
阅读次数:
387
#include
#include
#include
/*
有符号 结构体1
*/
struct bits
{
int b1:5;
/*
因为是int型,最大设置32位,由于int型是有符号整形,
所以这里5位为有符号类型。
11111 -1
10000 -16
01111 15
00000 0
*/
int :2;
int b2:2;
/*
11 -1
10 -2
01 1
0...
分类:
其他好文 时间:
2014-08-05 11:20:09
阅读次数:
205
不看c++ primer 永远不知道自己基础有多差
函数的参数传值一般有两种方式:值传递,引用传递。
值传递有下面两种形式:
void func( int a )
{
//
}
void func1( int *a )
{
//
}
对于 func 和func1都是通过拷贝内存来实现的
第二个
int m = 10 ;
func1( int *a ) ;
//处理...
分类:
编程语言 时间:
2014-08-05 11:17:39
阅读次数:
179