码迷,mamicode.com
首页 > 2015年04月17日 > 全部分享
自定义view(自定义view的时候,三个构造函数各自的作用)
package com.timeshare.tmband.Utils;import android.content.Context;import android.content.res.TypedArray;import android.graphics.Canvas;import android....
分类:其他好文   时间:2015-04-17 18:06:16    阅读次数:216
NOP界面层研究-菜单
CatalogController 方法public ActionResult TopMenu() //categories var customerRolesIds = _workContext.CurrentCustomer.CustomerRoles .Where(cr => cr.Activ...
分类:其他好文   时间:2015-04-17 18:05:33    阅读次数:294
!important的用法
如果写成:a{color:teal !important},IE6和其它高版本浏览器都认识,(IE6虽然不认识!important,但它还是能够认识!important之前的color:teal这个属性的,如果写成a{color:red;color:teal !important},则所有浏览器也都...
分类:其他好文   时间:2015-04-17 18:06:33    阅读次数:91
BusyBox Init
嵌入式系统内核启动后的第一个程序就是init,一般位于/sbin/init(一般是符号链接到/bin/busybox),但有些也会直接放在根目录下如linuxrc,busybox的init不支持多级别启动(multiplerunlevels),init也就是1号进程。Init启动流程:1、为in.....
分类:其他好文   时间:2015-04-17 18:07:23    阅读次数:107
enable feature AJAX of MOSS2007
As default, the feature AJAX of MOSS2007 is disabled, so the site web configuration file should be modified to enable AJAX to achieve the auto complet...
分类:Web程序   时间:2015-04-17 18:05:01    阅读次数:246
lucene4.7源码研究之索引建立过程(1)
Directory整体流程还是比较简单的,图片借用Directory directory = FSDirectory.open(file);/** Creates an FSDirectory instance, trying to pick the * best implementation...
分类:Web程序   时间:2015-04-17 18:06:30    阅读次数:196
JavaScript事件委托的技术原理
如今的JavaScript技术界里最火热的一项技术应该是‘事件委托(event delegation)’了。使用事件委托技术能让你避免对特定的每个节点添加事件监听器;相反,事件监听器是被添加到它们的父元素上。事件监听器会分析从子元素冒泡上来的事件,找到是哪个子元素的事件。基本概念非常简单,但仍有很多...
分类:编程语言   时间:2015-04-17 18:04:51    阅读次数:145
【leetcode】Reverse Words in a String(hard)☆
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".For C programmers: Try to solv...
分类:其他好文   时间:2015-04-17 18:05:36    阅读次数:108
sencha---滚动条
var container = Ext.create('Ext.Container',{ fullscreen:true, html: 'This container is scrollable!', scrollable:{direction:'vertical'}})
分类:其他好文   时间:2015-04-17 18:04:08    阅读次数:117
求本月有多少天?
中心思想是:下个月的第0天即为本月的最后一天var oDate=new Date(); oDate.setMonth(oDate.getDate()+1);oDate.setDate(0);alert(oDate.getDate());
分类:其他好文   时间:2015-04-17 18:04:26    阅读次数:111
Extjs store数据加载
//store方式在程序启动时就会加载完毕Ext.define('App.view.note.infoView',{ extend:'Ext.List', xtype:'infoView', id:'infoView', config:{ store:'typelis...
分类:Web程序   时间:2015-04-17 18:04:15    阅读次数:129
js打印相关,注意此方法受到IE安全性设置影响
javascript打印-打印页面设置-打印预览代码 ===================================================================关于这个组件还有其他的用法,列举如下: WebBrowser.ExecWB(1,1) 打开 ...
分类:Web程序   时间:2015-04-17 18:03:54    阅读次数:158
Menubar
A menubar is a common part of a GUI application. It is a group of commands located in various menus.#!/usr/bin/python# -*- coding: utf-8 -*-"""ZetCode...
分类:其他好文   时间:2015-04-17 18:05:11    阅读次数:206
ORA-01157 & ORA-01110
测试服务器做了RMAN还原后,发现告警日志文件有如下错误信息ORA-01110: data file 206: '/u04/epps/oradata/temp02.dbf' Errors in file /u01/app/oracle/admin/epps/bdump/epps_j000_12672...
分类:其他好文   时间:2015-04-17 18:04:44    阅读次数:150
保存二进制流数据到文件
/// /// 保存二进制流文件 /// /// 文件流数据 /// 系统编号 /// 模块名称 /// 文件名称 /// publicstringSaveDocument(byte[]files,stringsystemCode,stringmo...
分类:其他好文   时间:2015-04-17 18:02:54    阅读次数:169
mysql中php生成唯一ID
分类:数据库   时间:2015-04-17 18:04:01    阅读次数:124
newman安装时遇到问题的解决
npm安装newman时系统提示需要安装.net framwork环境通过查询文档安装visual studio express:于是安装visual studio 2012 express.安装之后再次运行npm install -g newman,安装完成。注:安装所须其他环境在此就省略不提了。...
分类:其他好文   时间:2015-04-17 18:03:50    阅读次数:157
2319条   上一页 1 ... 43 44 45 46 47 48 49 ... 137 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!