import android.content.Context;
import android.util.AttributeSet;
import android.widget.ListView;
/**
*
* @author jiarh
*2014-8-14
*/
public class UserListView extends ListView {
public User...
分类:
其他好文 时间:
2014-08-14 16:52:58
阅读次数:
177
struts2 autocompleter 动态下拉菜单...
分类:
其他好文 时间:
2014-08-14 16:52:48
阅读次数:
185
win7
python2.7
django 1.6.5
因为使用数据库sqlite,项目中有models.py,所以使用方便的forms.ModelForm处理表单。
上传图像文件使用默认的defaultstorage。
1、settings.py里增加两行media的定义:
#Media
MEDIA_ROOT = 'e:/Depot/media'
MEDIA_URL = '/...
分类:
其他好文 时间:
2014-08-14 16:52:08
阅读次数:
318
Problem Description
One day , Kiki wants to visit one of her friends. As she is liable to carsickness , she wants to arrive at her friend’s home as soon as possible . Now give you a map of the city...
分类:
其他好文 时间:
2014-08-14 16:51:58
阅读次数:
219
Ext JS风格指南:
熟知的且易于学习
快速开发,易于调试,轻松部署
组织良好、可扩展和可维护...
分类:
Web程序 时间:
2014-08-14 16:51:56
阅读次数:
374
建立差分对约束:
(1)设置差分对约束,从SigXplorer PCB SI GXL打开diff_sim.top拓扑。
(2)执行Setup-Constraints,弹出Set Topology Constraints对话框
(3)选择Diff Pair标签页,设置如图:
(4)单击OK,关闭对话框,File->Save,保存拓扑,File->Exit。
(5)应...
分类:
其他好文 时间:
2014-08-14 16:51:53
阅读次数:
269
本题就是专门肯人的题目,给出的列子也是故意误导人的。
其实就考一点:没有mirror的字母存在的时候就可以判定整个字符串不是mirror!
如下面的mirrored string的叙述:
A mirrored string is a string for which when each of the elements of the string is changed to its rever...
分类:
其他好文 时间:
2014-08-14 16:51:28
阅读次数:
208
原题:
Implement int sqrt(int x).
Compute and return the square root of x.
==============================以下为引用====================================
牛顿迭代法
为了方便理解,就先以本题为例:
计算x2 = n的解,令f(...
分类:
其他好文 时间:
2014-08-14 16:51:18
阅读次数:
263
SingleColumnValueFilter
过滤某列值大于多少小于多少:
List filters = new ArrayList();
filters.add( new SingleColumnValueFilter(Bytes.toBytes("pinfo"), //列族...
分类:
其他好文 时间:
2014-08-14 16:51:08
阅读次数:
338
比如给定一个数组[2,3,11] 要求产生[1,2,3,6,11,22,33,66]观察可得:[2,3] 产生了[1,2,3,6] 的乘积可能。当加入11时,11会和现有的每一个元素都相乘得到[1,2,3,6,11,22,33,66]public static void allProducts(int[] arr) {
List list = new ArrayList();
list.a...
分类:
其他好文 时间:
2014-08-14 16:50:58
阅读次数:
223
STL算法主要是我们强大的标准库中以迭代器或数值或函数对象为参数预先定义好的一系列算法操作。
在STL算法分类中首先要提的就是两个普遍存在的后缀:
_if
_copy
其中这两个后缀的作用分别是:一、对于_if,如果算法存在两种形式,参数的个数相同,其中一种形式的参数要求传递一个值,而另一种形式则会要求传递一个函数或仿函数(函数对...
分类:
其他好文 时间:
2014-08-14 16:50:38
阅读次数:
235
Description
ACM has bought a new crane (crane -- je?áb) . The crane consists of n segments of various lengths, connected by flexible joints. The end of the i-th segment is joined to the beginning...
分类:
其他好文 时间:
2014-08-14 16:50:28
阅读次数:
240
iOS页面跳转:
第一种
[self.navigationController pushViewController:subTableViewController animated:YES];
//描述:通过 NSNavigationBar 进行跳转
[self.navigationController popViewControllerAnimated:Y...
分类:
移动开发 时间:
2014-08-14 16:50:18
阅读次数:
227
主要参考了这篇博客http://mobile.51cto.com/iphone-284116.htm
主要用到了,两个类,一个delegate
a类,调用b类,当b类执行之后,需要把一个数据传递给a类,a类把这个数据显示出来。
1.delegate,就这一个头文件就足够了。在类中去实现这个代理方法
#import
@protocolUIViewPassValueDe...
分类:
移动开发 时间:
2014-08-14 16:49:59
阅读次数:
215