android 开发快捷键

Android 安卓有关的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 const 常量
fbc findViewById
fore 创建foreach循环 //修改了快捷键名称
gone 设置View为gone //修改了快捷键名称
IntentView 用ACTION_VIEW创建一个Intent
key 结果是 private static final String KEY_$value$ = "$value$";
newInstance 使用参数创建一个新的Fragment实例
co 生成构造方法 //修改了快捷键名称
cop 私有构造方法 //修改了快捷键名称
rgS 从资源文件getString(R.string.XXX)
rouiT 生成runOnUIThread
sbc 生成方格状注释代码块
Sfmt 格式化String String.format(XXX)
starter 创建一个静态的start(...)方法来启动一个Activity
toal 创建一个长时间的Toast //新增
toas 创建一个Toast //修改了快捷键名称
vi 设置View为visible //修改了快捷键名称
logd Log.d(TAG, String)
loge Log.e(TAG, String)
logi Log.i(TAG, String)
logm 打印方法名称及其参数,Log.d(TAG,XXX)
logr 打印方法的结果

psf public static final
psfi public static final int
psfs public static final String
St String
thr throw new

AndroidComments 安卓组件

1
2
fix    添加 // FIXME    //修改了快捷键名称
do 添加 // TODO //修改了快捷键名称
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
iterations 快速生成循环和迭代器代码块

for 示例:for (int i = 0; i < ; i++) {} //修改了快捷键名称

fora 示例:遍历数组 //修改了快捷键名称
for (int i = 0; i < Array.length; i++) {
int i1 = Array[i];
}

forc 示例:使用iterator遍历一个容器变量 //修改了快捷键名称
for (Iterator iterator = collection.iterator(); iterator.hasNext(); ) {
Object next = iterator.next();
}//这个是遍历一个容器变量的,直接让容器返回一个iterator进行遍历

whe 示例:while循环遍历枚举内容 //修改了快捷键名称
while (枚举类.hasMoreElements()) {
Object nextElement = 枚举类.nextElement();
}

iter 示例:遍历选中状态下的set //修改了快捷键名称
for (int i : FOCUSED_STATE_SET) {...}

whi 示例:while循环使用iterator进行遍历 //修改了快捷键名称
while (iterator.hasNext()) {
Object next = iterator.next();
}//获取到了迭代器对象后,对迭代器进行遍历操作

forl 示例:遍历list对象里面的内容 //修改了快捷键名称
for (int i = 0; i < list.size(); i++) {
Object o = list.get(i);
}

foraa 示例:倒叙遍历数组 //修改了快捷键名称
for (int i = Array.length - 1; i >= 0; i--) {
int i1 = FOCUSED_STATE_SET[i];
}

//以下这两个用的少,只是把快捷键改了一下,方便使用
fors 对StringTokenizer遍历 //修改了快捷键名称
forv 对Vector遍历 //修改了快捷键名称