StorageManagerStorageManager is the interface to the systems storage service. The storage manager handles storage-related items such as Opaque Binary ...
分类:
移动开发 时间:
2014-08-21 19:17:24
阅读次数:
262
1、屏蔽系统菜单:工程目录“html-template”文件夹-->“index.template.html”文件中,在var params = {};语句下添加新语句: params.wmode = "opaque";2、新建Tree右键菜单工具类:TreeRightClickManager.as...
分类:
其他好文 时间:
2014-07-19 19:23:56
阅读次数:
276
让UIWebView的背景透明:12self.webView.backgroundColor = [UIColor clearColor];self.webView.opaque = NO这样就可以背景透明了,如果还是无效的话,那么需要在html里面加入: 去掉uiwebview滚动到边缘时的阴影....
分类:
Web程序 时间:
2014-07-18 14:26:56
阅读次数:
223
1.尽量使用不透明的视图。 不透明的视图可以极大提高渲染的速度。因此如非必要,可以将tableView cell及其视图的opaque的属性设置为YES。其中的特例包括背景色,它的alpha值应该为1(例如不要使用 clearColor);图像的alpha值也应该为1,或者在画图时设为不透...
分类:
其他好文 时间:
2014-07-07 12:44:12
阅读次数:
202
一.@代表引用资源1.引用自定义资源。格式:@[package:]type/nameandroid:text="@string/hello"2.引用系统资源。格式:@android:type/name
android:textColor="@android:color/opaque_red"注意:其...
分类:
移动开发 时间:
2014-05-28 12:52:09
阅读次数:
329
在做web开发中可能会遇到flash遮挡页面中元素的情况,无论怎么设置flash容器和层的深度(z-index)也无济于事,现有的解决方案是在插入flash的embed或object标签中加入”wmode”属性并设置为wmode=“transparent”或”opaque”,但wmode属性到底是什...
分类:
其他好文 时间:
2014-05-26 08:47:52
阅读次数:
196
在html中设计div弹方框,并用swfobject方式加载swf,同时设置其params.wmode="opaque", html页面中包括textarea。html加载后,textarea无法输入中文了,无论怎么切换输入法都不可以。同时,访问当前浏览的网站的其他页面的textarea/input,也无法输入中文了。...
分类:
其他好文 时间:
2014-04-29 13:17:21
阅读次数:
379