public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ArrayList<HashMap<String,String>> list=new ArrayList<HashMap<String,String>>();
HashMap<String,String> map1=new HashMap<String,String>();
HashMap<String,String> map2=new HashMap<String,String>();
HashMap<String,String> map3=new HashMap<String,String>();
HashMap<String,String> map4=new HashMap<String,String>();
map1.put("user_name", "cheng");
map1.put("user_ip", "127.0.0.1");
map2.put("user_name", "chengqing");
map2.put("user_ip", "127.0.0.2");
map3.put("user_name", "chengh");
map3.put("user_ip", "127.0.0.3");
map4.put("user_name", "chengf");
map4.put("user_ip", "127.0.0.4");
list.add(map1);
list.add(map2);
list.add(map3);
list.add(map4);
SimpleAdapter listAdapter=new SimpleAdapter(this,list,R.layout.user,new String[]{"user_name","user_ip"},new int[]{R.id.user_name,R.id.user_ip});
setListAdapter(listAdapter);
}
常用的XCode快捷键
Command-Option-Up: 切换.h和.m
Command-Shift-D: 快速打开文件
Control-2: 快速浏览当前文件成员
Alt-Command-Left/Right: 前一个/后一个编辑位置
Command-Shift-E: 最大化文件编辑区域
Control-/: 切换到下一个占位符(自动完成的时候)
Control-.: 下一个自动完成提示
Command-E: 使用当前选中内容查找
Command-G: 在当前文件中查找下一个
Command-Shift-F: 在项目中查找
Command-Alt-Shift-T: 在Groups&Files里定位到当前编辑的文件
Command+双击:浏览源文件
Alt+双击:查找帮助
新建项目 command+shift+n
新建文件 command+n
新建空文件 command+control+n
打开 command+o
关闭窗口 command+w
保存所有文件 command+option+s
还原到保存时状态 command+u
创建快照 command+control+s (保存文件快照,以后可进行对比修改情况)
左缩进 command+[
右缩进 command+]
项目中查找 command+shift+F
查找下一个 command+g
查找上一个 command+shift+g
用选择的查找 command+e
go to line command+l
下一个填充 control+.
填充列表 option+esc
显示拼写和语法 command+shift+;
检查拼写 command+;
打开头文件 command+shift+d
切换头/源文件 command+option+上箭头
类浏览 command+shift+c
Bulid and Run 断点关 command+r
Build and Debug 断点开 command+y
下个Build警告或错误 command+=
前个Build警告或错误 command+shift+=
注释 command+/
文件首行 command+上箭头
文件末 command+下箭头
行首 command+左箭头
行末 command+右箭头
上一单词 option+左箭头
下一单词 option+右箭头
中间显示光标位置 control+l
方法组列表 control+2
删除此行光标前所有内容 control+delete
断点 command+option+b
当前行插入断点 command+\
Pause command+option+p
Step Into command+shift+i
Step Into Instruction command+option+shift+i
Step Over command+shift+o
Setp Over Instruction command+option+shift+o
Setp Out command+shift+t
查开发文档 command+option+click
mac os下截屏快捷键~
Posted by Seamus on 8th January 2011 in 技巧
command+shift+3 截全屏~
command+shift+4 像qq截屏一样截区域
command+shift+4之后再按一下空格 截窗口,还带阴影的哟~~
参考:http://robin622.blog.163.com/blog/static/5820978220101194495399/
http://hb.qq.com/a/20101125/001853.htm
http://www.iteye.com/topic/467195