码迷,mamicode.com
首页 > 2014年07月07日 > 全部分享
如何判断SharedPreferences 记录存在
private EditText et; private String ettext; SharedPreferences settings; Editor editor; //设置settings = getSharedPreferences("nick", 0); ...
分类:其他好文   时间:2014-07-07 16:11:16    阅读次数:267
Problem Clone Graph
Problem Description:Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.Solution: 1 public UndirectedGraph...
分类:其他好文   时间:2014-07-07 16:11:57    阅读次数:192
敏捷开发全程实战(北京站 2014-7-26)
1.课程概述?敏捷过于理想,无法实施??项目团队没有凝聚力,除了项目经理其他成员似乎不太关注项目成败;?项目需求变来变去,客户喜欢你先做出来看看,一直无法形成书面的需求文档;?项目计划要么成为摆设,要么没有计划;?……本课程将会针对上述问题,为你分享各种最佳实践!项目管理中存在各式各样的问题,项目管...
分类:其他好文   时间:2014-07-07 16:13:17    阅读次数:239
C#接口的经典案例
C#接口(interface)实例子(简单而经典)2008/12/04 10:04using System;using System.Collections.Generic;using System.Text;using System.Threading;namespace AppTest{ ...
分类:其他好文   时间:2014-07-07 16:12:33    阅读次数:174
破解之总结(一)
1、 汇编2、 脱壳1)5种常见的语言特征(也是判断是否到达OEP的一种方法)2)附加数据的处理3)自校验的处理 1) 如果是调用错误提示——F12堆栈调用法 2)如果是文件/数据损坏错误提示——2OD对比法(bp CreateFileA)4) BC++程序的手动查找IAT3、 破解1>一般破解目标...
分类:其他好文   时间:2014-07-07 16:13:57    阅读次数:248
微软职位内部推荐-Senior Android Developer
微软近期Open的职位:Position: Senior SDE-- Mobile Products Android /iOS/WP Senior DeveloperContact Person: Winnie Wei (wiwe@microsoft.com)Location: BeijingRol...
分类:移动开发   时间:2014-07-07 16:15:11    阅读次数:267
畅通工程&&How Many Tables
http://acm.hdu.edu.cn/showproblem.php?pid=1232 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int n,m; 7 int bin[2005]; 8 in...
分类:其他好文   时间:2014-07-07 16:14:33    阅读次数:145
图片的ScaleType详解 ImageView的属性android:scaleType,
ImageView的属性android:scaleType,即ImageView.setScaleType(ImageView.ScaleType)1 imageView.setScaleType(ImageView.ScaleType.FIT_XY ); 1 这里我们重点理解ImageView的....
分类:移动开发   时间:2014-07-07 16:15:48    阅读次数:237
Design Model---Observer Model
昨天看了Head First设计模式这本书,这本书写得真不错,简单易懂。我是第一次接触设计模式,觉得这东西挺高端大气的,和别人侃的时候,我用啥XX设计模式,是不是觉得很屌的感觉?哈哈,开玩笑了,主要是学习前人的经验,这样让自己的代码设计更加规范。现在就记录一下我学到的第一个设计模式---Obse.....
分类:其他好文   时间:2014-07-07 16:16:24    阅读次数:276
LeetCode::Remove Duplicates from Sorted List II [具体分析]
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.For example,Given 1->2-...
分类:其他好文   时间:2014-07-07 16:17:00    阅读次数:139
【USACO 3.2.4】饲料调配
【描述】农夫约翰从来只用调配得最好的饲料来喂他的奶牛。饲料用三种原料调配成:大麦,燕麦和小麦。他知道自己的饲料精确的配比,在市场上是买不到这样的饲料的。他只好购买其他三种混合饲料(同样都由三种麦子组成),然后将它们混合,来调配他的完美饲料。给出三组整数,表示 大麦:燕麦:小麦 的比例,找出用这三种饲...
分类:其他好文   时间:2014-07-07 16:18:16    阅读次数:207
php购物车原理
在产品展示页面时(如 shop.php?id=888),点击购买或添加到购物车时,根据相应的产品标识符(如 id),查询相应的数据库,如果查询表示有此产品,用 $_SESSION 数组保存相应的信息
分类:Web程序   时间:2014-07-07 16:17:39    阅读次数:173
Problem Copy List with Random Pointer
Problem Description:A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null...
分类:其他好文   时间:2014-07-07 16:19:01    阅读次数:188
Problem Surrounded Regions
Problem Description:Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in th...
分类:其他好文   时间:2014-07-07 16:20:26    阅读次数:216
eclipse 安装scons
http://www.sconsolidator.com/updateInstallationTo use SConsolidator, you first have to installSCons(version 2.0 is the minimum requirement). SConsolid...
分类:系统相关   时间:2014-07-07 16:19:42    阅读次数:458
为listview的item中的元素设置onclick事件
表达能力比较差,所以现在解释一下标题的意思:listview的列表项,点击的时候触发的是itemOnClick事件,点击后转向到A页;那么,假如在子项中有一个连接是想转到B页,我们该怎么办呢。这样能明白了吧,好,现在我说一下解决的办法:有两种办法,一种是重写adapter,一种是在你的子项中的元素中...
分类:其他好文   时间:2014-07-07 16:21:10    阅读次数:155
Android开发规范——命名
在讲解命名规范前,先初略介绍下当前主要的标识符命名法和英文缩写规则。标识符命名法标识符命名法最要有四种:1 驼峰(Camel)命名法:又称小驼峰命名法,除首单词外,其余所有单词的第一个字母大写。2 帕斯卡(pascal)命名法:又称大驼峰命名法,所有单词的第一个字母大写3 下划线命名法:单词与单词间...
分类:移动开发   时间:2014-07-07 16:21:50    阅读次数:284
1540条   上一页 1 ... 47 48 49 50 51 52 53 ... 91 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!