码迷,mamicode.com
首页 >  
搜索关键字:implementing screen    ( 3207个结果
关于BOM的学习总结
第四章浏览器对象模(BOM)总结 本章主要讲解了浏览器对象模型BOM的基本概念,以及window、document、location、navigator和screen五个对象的常用属性及方法。 其中window对象是BOM的核心,我们可以通过window的moveBy()、resizeTo()等.....
分类:其他好文   时间:2014-09-11 16:54:32    阅读次数:185
自适应label
//自适应label self.contentLabel.numberOfLines = 0; CGSize contentsize = CGSizeMake(SCREEN_WIDTH - 2 * RP_MARGIN_W,2000); CGSize cont...
分类:其他好文   时间:2014-09-11 09:34:51    阅读次数:249
WP 8.1 status bar
A status bar is the bar showing signal, battery and time on the top of the phone's screen. In WP8.1 we it's called status bar, but in WP8.0 it's calle...
分类:其他好文   时间:2014-09-09 22:49:49    阅读次数:186
Pygame 打方块
import traceback import random import pygame from pygame.locals import * pygame.display.init() pygame.font.init() sizes = { "screen" : ( 300, 480 ) } colors = { "font" : ( 138, 69, 252 ), ...
分类:其他好文   时间:2014-09-09 18:19:59    阅读次数:350
pygame.draw.line
import traceback import math import pygame from pygame.locals import * pygame.display.init() pygame.font.init() sizes = { "screen" : ( 300, 480 ) } colors = { "line" : ( 255, 255, 255 ), ...
分类:其他好文   时间:2014-09-09 16:11:49    阅读次数:368
Android系统截屏的实现(附代码)
1.背景           写博客快两年了,写了100+的文章,最火的文章也是大家最关注的就是如何实现android系统截屏。其实我们google android_screen_shot就会找到很对办法,但那些都是很多年前的了,在android4.*版本后,android对于源码进行了更正,使得以前的方法都不能够使用。       感谢cjd6568358这名网友,我们一起讨论,最终由他实现了a...
分类:移动开发   时间:2014-09-09 16:10:18    阅读次数:215
pygame 初记
import traceback import pygame from pygame.locals import * pygame.display.init() sizes = { "screen" : [ 640, 480 ] } colors = { "screen" : ( 255, 255, 255 ) } screen = pygame.display.set_m...
分类:其他好文   时间:2014-09-09 12:36:08    阅读次数:229
unity实现二次退出提示
//实际项目中可以直接用GUI插件做个退出提示框。美观又和谐。public float uTime = 2; void OnGUI() { if (uTime < 2) { GUI.Label(new Rect(Screen.width/2...
分类:其他好文   时间:2014-09-09 12:02:08    阅读次数:168
Parcelable与Serializable接口的用法和区别
1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:其他好文   时间:2014-09-06 15:58:13    阅读次数:287
linux screen打印日志
需求:公司某后台程序是在screen下执行的,只能通过恢复到窗口进行查看并且无法查看全部信息;由于更新后台程序后需要重启后台,通过查看后台程序的执行过程来判断此次更新是否成功,现需要将后台程序的screen运行信息打印到日志,并提供给开发者调试。 实现思路:1.将screen日志输出到某文件,并给开发者开通读文件权限;     2.将日志名称加上时间,以通过日志名称就可轻易辨认后台是否重启成功...
分类:系统相关   时间:2014-09-05 18:17:21    阅读次数:381
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!