码迷,mamicode.com
首页 > 2014年08月08日 > 全部分享
【原创】android——Tabhost 自定义tab+底部实现+intent切换内容
1,实现tabhost自定义格式,再此仅仅显示背景和文字,效果图预览:(底边栏所示) (图片变形)2,xml配置activity_user的XML配置 1 8 9 15 23 24 29 30 31 32 ...
分类:移动开发   时间:2014-08-08 23:52:46    阅读次数:426
零散知识点
1.引用传递参数ref static void Main(string[] args) { int n1 = 10, n2 = 20; Swap(ref n1,ref n2); Console.WriteL...
分类:其他好文   时间:2014-08-08 23:52:36    阅读次数:439
【Java】String,StringBuffer与StringBuilder的区别??
String 字符串常量StringBuffer 字符串变量(线程安全)StringBuilder 字符串变量(非线程安全)简要的说, String 类型和 StringBuffer 类型的主要性能区别其实在于 String 是不可变的对象, 因此在每次对 String 类型进行改变的时候其实都等同...
分类:编程语言   时间:2014-08-08 23:52:26    阅读次数:332
C中读取键盘码
键盘码在底层开发中经常用到,有时候我们会忘记它们,就要急急忙忙的去找 键-码 对照表查看,其实程序可以自己打印出 键-码 对应值#include #include int main(void) { int key, modifiers; while ((key=bioskey(0))...
分类:其他好文   时间:2014-08-08 23:52:18    阅读次数:339
Remove Duplicates from Sorted Array
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:其他好文   时间:2014-08-08 23:52:12    阅读次数:238
JavaScript总结之单击弹出div
今天也算用了不少手段来实现他们的要求,大概记录一下,下边的代码示例,我全部修改贴出来,争取全部占到自己的代码里就能用。1、点击同一个div,打开/关闭另一个div。 1 1 2 2 然后是html代码,大概做了个简单的: 1 2 [详细信息] 3 4 5 6 ...
分类:编程语言   时间:2014-08-08 23:51:56    阅读次数:307
字符串匹配算法
1. 朴素的匹配算法(暴力匹配) 寻找子串p在主串s中第pos个字符后的位置。 分别利用计数指针i和j指示主串s和子串p中当前待比较的字符。算法的基本思想是:从主串s的第pos个字符起和模式的第一个字符比较,如果相等,继续逐个比较后续字符;否则从主串的下一个字符起,重新和模式的第一个字符比较。算法的...
分类:其他好文   时间:2014-08-08 23:51:51    阅读次数:350
easyui filter 过滤时间段
1$.extend($.fn.datagrid.defaults.filters,{2dateRange:{3init:function(container,options){4varc=$('').appendTo(container);5c.find('.d1,.d2').datebox();6...
分类:其他好文   时间:2014-08-08 23:51:37    阅读次数:680
poj 1151 Atlantis (离散化 + 扫描线 + 线段树)
题目链接题意:给定n个矩形,求面积并,分别给矩形左上角的坐标和右上角的坐标。分析: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #define LL __int64 8 #defi...
分类:其他好文   时间:2014-08-08 23:51:26    阅读次数:342
la----3695 City Game(最大子矩阵)
Bob is a strategy game programming specialist. In his new city building game the gaming environment is as follows: a city is built up by areas, in whi...
分类:其他好文   时间:2014-08-08 23:51:16    阅读次数:315
[leetcode]Binary Tree Level Order Traversal
Binary Tree Level Order TraversalGiven a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).Fo...
分类:其他好文   时间:2014-08-08 23:51:06    阅读次数:265
openwrt虚拟机的network unreachable
之前在hyper-v中装了openwrt的ATTITUDE ADJUSTMENT (12.09, r36088)这个最新版本 我之前的文章有提到怎么安装 link但是发现用opkg update不能用,说wget不能连到openwrt.org这个网络发现ping也ping不同baidu.com,出现...
分类:Web程序   时间:2014-08-08 23:50:56    阅读次数:408
未能加载 Oracle.ManagedDataAccessDTC.dll 或它的依赖项
第一个项目做完了,交付给测试进行测试,碰到一堆问题,当然不是程序上的,而是环境上的!这个项目是用 EF 5 + MVC5 + Oracle 11 开发的。驱动用的是Oracle.ManagedDataAccess ,本地WIN7/8.1运行一点问题都没有。今天下午打包到 WIN 2008 上,解决了...
分类:数据库   时间:2014-08-08 23:50:46    阅读次数:3075
支持Windows7的Apache Cordova工具更新
源文:http://blogs.msdn.com/b/visualstudio/archive/2014/08/04/apache-cordova-tooling-update-with-support-for-windows-7.aspx本周,我们发布了用于多设备混合应用开发扩展的CTP 2.0,...
分类:Windows程序   时间:2014-08-08 23:50:36    阅读次数:1966
java基础知识回顾之java Thread类学习(六)--java多线程同步函数用的锁
1.验证同步函数使用的锁----普通方法使用的锁思路:创建两个线程,同时操作同一个资源,还是用卖票的例子来验证。创建好两个线程t1,t2,t1线程走同步代码块操作tickets,t2,线程走同步函数封装的代码操作tickets,同步代码块中的锁我们可以指定。假设我们事先不知道同步函数用的是什么锁;如...
分类:编程语言   时间:2014-08-08 23:50:26    阅读次数:396
[Camel Basics]
Define routes:Either using Spring xml or Java DSL.Spring xml: //to load the Java DSL routes defined in MyRouteBuilder class //to load the routes...
分类:其他好文   时间:2014-08-08 23:50:06    阅读次数:334
Evaluate Reverse Polish Notation
Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are +, -, *, /. Each operand may be an integer or another ex...
分类:其他好文   时间:2014-08-08 23:49:56    阅读次数:314
1910条   上一页 1 2 3 4 5 6 ... 113 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!