码迷,mamicode.com
首页 > 2015年07月07日 > 全部分享
上下抖动的进度条
#import @interface TJShakeProgressView : UIView@property(nonatomic,assign)CGFloat progress;@end//// TJShakeProgressView.m// TJShakeProgressView//// Cr...
分类:其他好文   时间:2015-07-07 22:22:07    阅读次数:139
LeetCode Valid Parentheses
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:其他好文   时间:2015-07-07 22:24:35    阅读次数:118
centos7初步命令
x window图形界面是ctrl+alt+f1,其他2-6都是命令行格式。可以互相转,也可以在命令行下 startx命令进入图形界面。 锁屏命令:ctral+alt+l命令行界面: . 此层目录 .. 上一层目录 - 前一个工作目录 ~ 目前用户身份所在的文件夹 ~account account这...
分类:其他好文   时间:2015-07-07 22:24:07    阅读次数:204
在网页中嵌入百度地图
百度地图代码生成器的地址:http://api.map.baidu.com/lbsapi/createmap/index.html百度开放平台的地址:http://developer.baidu.com/map/一,定位中心点,就是你想要作为中心的位置。点击切换城市,输入就行再选具体位置二,设置地图...
分类:Web程序   时间:2015-07-07 22:23:31    阅读次数:150
robotium原理之获取WebElement元素
robotium框架支持WebView,在robotium中有getWebElements()、getWebElements(By by)等方法来获取android中的WebView的元素,并提供了 clickOnWebElement方法来完成点击事件.android中的原生控件是比较好攻取的,那...
分类:Web程序   时间:2015-07-07 21:22:14    阅读次数:239
Javascript属性枚举(for/in)
ECMAScript规范并没有指定for/in循环按照何种顺序来枚举对象属性。但实际上,主流浏览器厂商的JavaScript实现是按照属性定义的先后顺序来枚举简单对象的属性,先定义的属性先枚举。如果使用对象直接量的形式创建对...
分类:编程语言   时间:2015-07-07 21:19:17    阅读次数:185
WPF中 Combox的SelectedValue 不显示的问题
List<int> listYears = new List<int>(); for (int i = 5; i > -5; i--) { listYears.Add(DateTime.Now.Year - i); } cb_Year.ItemsSource = listYears; cb_Year.SelectedValue = DateTime.Now.Year ; /*Select...
分类:Windows程序   时间:2015-07-07 21:20:04    阅读次数:256
Genymotion遇上Eclipse
Genymotion必须运行在virtualbox中,virtualbox是一个虚拟器,和系统有关的虚拟器。想详细了解它的就百度吧。 注册一个Genymotion的账号,然后下载Genymotion,下载的时候有两个版本:包含virtualbox的和不包含的...
分类:系统相关   时间:2015-07-07 21:20:49    阅读次数:296
欢迎使用CSDN-markdown编辑器
Mac 环境配置 显示所有文件夹 显示:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏:defaults write com.apple.finder AppleShowAllFiles -bool false Homebrew: ruby -e "$(curl -fsSL https://raw.githu...
分类:其他好文   时间:2015-07-07 21:20:50    阅读次数:138
stretchableImageWithLeftCapWidth气泡拉伸
- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight; 从点(topCapHeight,topCapHeight)往右下角开始拉伸...
分类:其他好文   时间:2015-07-07 21:19:12    阅读次数:129
STM8S---独立按键IO口设置及按下事件问题
GPIO设置 按键检测 1 连续按键检测短按长按 关键代码1 GPIO设置????????????????STM8 I/O 口引脚配置表 Px_DDR Px_CR1 Px_CR2 I/O 方式 引脚状态 0 0 0 输入 悬浮输入 0 0 1 输入 上拉输入 0 1 0 输入 中断悬浮输入 0 1 1 输入...
分类:其他好文   时间:2015-07-07 21:17:55    阅读次数:509
Oracle Database 11.2.0.4.0 已在 中标麒麟Linux x86-64 NeoKylin Linux Advanced Server 6 上通过认证
Oracle Database 11.2.0.4.0 已在 Linux x86-64 NeoKylin Linux Advanced Server 6 上通过认证...
分类:数据库   时间:2015-07-07 21:19:41    阅读次数:194
kernel logo到开机动画之间闪现黑屏(android 5.X)
在BootAnimation开始绘图之前,会先做一次clear screen的动作,避免出现前面的图干扰到BootAnimation的显示。 通过check main_log先确认播放开机动画是哪个function,在对应function删除clear screen的动作的对应代码。 /frameworks/base/cmds/bootanimation/BootAnimation.cpp ...
分类:移动开发   时间:2015-07-07 21:19:08    阅读次数:255
android5.x添加sim1,sim2标识
1,mobile_signal_group.xml  ..... android:id="@+id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" > android:id="@+id/mobile_signal" android:layout_hei...
分类:移动开发   时间:2015-07-07 21:19:16    阅读次数:175
android 5.x system.img 大于2G导致编译otapackage时报错如何处理
当system分区预制过多apk时如果img size超过2G 在make otapackage时会报如下错误  zipfile.LargeZipFile: Zipfile size would require ZIP64 extensions 或 in writestr zinfo.CRC = crc32(bytes) & 0xffffffff # CRC-32 checksu...
分类:移动开发   时间:2015-07-07 21:18:13    阅读次数:498
自创一篇滑动删除SlideListView最简单的案例(三)
最近在写滑动删除,网上代码又是看的云里雾里,果断自己研究,虽然效果不太好把,但是思路很清晰,代码逻辑很简单 先来看主页面布局 activity_main.xml--很简单就一个自定义listview <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="h...
分类:其他好文   时间:2015-07-07 21:17:43    阅读次数:225
CentOS 配置防火墙操作实例(启、停、开、闭端口)
CentOS 配置防火墙操作实例(启、停、开、闭端口):   注:防火墙的基本操作命令: 查询防火墙状态: [root@localhost ~]# service   iptables status   停止防火墙: [root@localhost ~]# service   iptables stop   启动防火墙: [root@l...
分类:其他好文   时间:2015-07-07 21:17:54    阅读次数:163
2081条   上一页 1 ... 10 11 12 13 14 15 16 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!