码迷,mamicode.com
首页 > 2014年07月13日 > 全部分享
使用SVN同步资源后图标样式的详细解读
项目视图The Package Explorer view- 已忽略版本控制的文件。可以通过Window → Preferences → Team → Ignored Resources.来忽略文件。A file ignored by version control. You can control...
分类:其他好文   时间:2014-07-13 09:37:30    阅读次数:343
Android中Parcelable接口用法
1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:移动开发   时间:2014-07-13 09:38:55    阅读次数:191
IOS中文字体斜体效果
/* 该代码用于解决在IOS开发,中文字体不能使用斜体的问题 对该控件进行旋转,因此如果控件有背景颜色/图片,也会跟着旋转 可将该控件设置背景透明,于Label下方再建一个有背景颜色的Frame相同的Label */ UILabel *lbl = [[UILabel alloc]...
分类:移动开发   时间:2014-07-13 09:38:10    阅读次数:223
内核Makefile编写
对于大部分内核模块或设备驱动的开发者和使用者来说,最常接触到的就是各层目录下基于kbuild架构的kbuild Makefile文件。主要部分有:1、目标定义,目标定义就是用来定义哪些内容要做为模块编译,哪些要编译链接进内核。最简单的只有一行,如obj-y += foo.o表示要由foo.c或者fo...
分类:其他好文   时间:2014-07-13 09:40:12    阅读次数:240
实现字符串中子字符串的替换2——待替换字符串和替换字符串的长度可以不相等
//使用C语言实现字符串中子字符串的替换//描述:编写一个字符串替换函数,如函数名为 StrReplace(char* strSrc, char* strFind, char* strReplace),//strSrc为原字符串,strFind是待替换的字符串,strReplace为替换字符串。//...
分类:其他好文   时间:2014-07-13 09:39:31    阅读次数:154
Android线程的创建与销毁
摘要: 在Android开发中经常会使用到线程,一想到线程,很多同学就立即使用new Thread(){...}.start()这样的方式。这样如果在一个Activity中多次调用上面的代码,那么将创建多个匿名线程,程序运行的越久可能会越来越慢。因此,需要一个Handler来启动一个线程,以及删除....
分类:移动开发   时间:2014-07-13 09:40:49    阅读次数:210
HtmlWeb类
HtmlWeb类是一个从网络上获取一个HTML文档的类,其提供的功能大多是基于完成此需求出发。现在来来HtmlWeb类有哪些方法以及属性。 一、属性bool AutoDetectEncoding { get; set; } 获取或设置一个值,该值指示是否必须将自动检测文档编码。bool C...
分类:Web程序   时间:2014-07-13 09:41:27    阅读次数:151
Linux virtualization and PCI passthrough
Processors have evolved to improve performance for virtualized environments, but what about I/O aspects? Discover one such I/O performance enhancement...
分类:系统相关   时间:2014-07-13 09:41:59    阅读次数:386
.net 文件下载
//TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { string strFileName = "dd.ppt"; Response.ContentType = "application/x-.....
分类:Web程序   时间:2014-07-13 09:42:39    阅读次数:521
global变量
在函数体内定义的global变量,函数体外可以使用,在函数体外定义的global变量不能在函数体内使用,$global $a; $a=123; function f() { echo $a; //错误, } //再看看下面一例 function f() { global $a; $a=123; } ...
分类:其他好文   时间:2014-07-13 09:44:00    阅读次数:160
Utils
using System;using System.Drawing;using System.Windows.Forms;namespace zhbCapture{ /// /// Description of Utils. /// public class Utils { public st...
分类:其他好文   时间:2014-07-13 09:43:24    阅读次数:193
前端技术概括
文/李晶随着互联网产业的爆炸式增长,与之伴生的Web前端技术也在历经洗礼和蜕变。尤其是近几年随着移动终端的发展,越来越多的人开始投身或转行至新领域,这更为当今的IT产业注入了新的活力。尽管Web前端技术诞生至今时日并不长,但随着Web技术的逐渐深入,今后将会在以下几方面发力。Web移动终端开发。Ja...
分类:其他好文   时间:2014-07-13 09:45:26    阅读次数:244
和我一起学python,控制语句 (life is short ,we need python)
控制语句if/elif/else if语句和一般编程语言一样,条件为true 执行 如: if true : print 'true' 0 and score90): print "your score is A" elif(score>60):...
分类:编程语言   时间:2014-07-13 09:44:41    阅读次数:233
Android phone 拨号UI
界面加载过程DialtactsActivity.java[java]view plaincopyprotectedvoidonCreate(Bundleicicle){this.setTheme(R.style.DialtactsTheme);super.onCreate(icicle);final...
分类:移动开发   时间:2014-07-13 09:46:02    阅读次数:464
webService访问加密-Soapheader
(转)WebService head加密,可以对WebService设置访问用户名和密码,增强WebService的安全性使WebService只能被授权用户使用。具体实现步骤:1、定义一个soapheader派生类用来实现WebService访问权限验证[csharp]view plaincopy...
分类:Web程序   时间:2014-07-13 09:46:38    阅读次数:225
sendMessage
[DllImport("user32.dll", EntryPoint="SendMessageA")] private static extern int SendMessage(IntPtr hwnd, uint wMsg, uint wParam, uint lParam); ...
分类:其他好文   时间:2014-07-13 09:47:54    阅读次数:196
[转]IOS Segment页面之间view的切换
有三个view,分别为view1、view2、view3,通过UISegmentedControl进行三个view的切换。Ios代码@interfaceUIViewDemoViewController:UIViewController{IBOutletUIView*view1;IBOutletUIV...
分类:移动开发   时间:2014-07-13 09:47:17    阅读次数:221
1468条   上一页 1 ... 70 71 72 73 74 75 76 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!