发表于 2018-11-12 | 评论数: android 开发快捷键Android 安卓有关的 12345678910111213141516171819202122232425262728 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 安卓组件 12fix 添加 // FIXME //修改了快捷键名称 do 添加 // TODO //修改了快捷键名称 12345678910111213141516171819202122232425262728293031323334353637383940iterations 快速生成循环和迭代器代码块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遍历 //修改了快捷键名称