使用Eclipse的代码补全快捷键alt+/已经习惯了,但是IntelJIDEA中这个快捷键组合没有效果,那么我们来修改之,按ctrl+alt+s打开设置界面
之后在keymaps中选择Eclipse即可,那么下面就要来修改了,在右上角的搜索框中输入completion,在MainMenu中可以找到
选中Basic那一行,右击,选择Add
Keyboard Shortcut,在这个窗口...
分类:
其他好文 时间:
2014-08-20 01:26:36
阅读次数:
260
代码 /** * * 返回添加到桌面快捷方式的Intent: * * 1.给Intent指定action="com.android.launcher.INSTALL_SHORTCUT" * * 2.给定义为Intent.EXTRA_SHORTCU...
分类:
移动开发 时间:
2014-08-14 13:58:58
阅读次数:
204
在使用全尺寸键盘的时候 键盘右边都有一排小键盘但是这个小键盘的数字键值和普通键盘的数字键值是不一样的在ANSI码里 标准数字键值是$30..$39, 而小键盘的键值是$60..$69这样问题就来了 , 我们在属性编辑器里设置Action的ShortCut的时候, 使用的都是文字表示, 而VCL架构里...
分类:
其他好文 时间:
2014-08-14 13:19:38
阅读次数:
314
vi 笔记1.没有新文件,会创建新文件2.文件中,没有行的话,会出现波浪号3.不在插入状态下,dd删除一行4.不在插入状态下,x是剪切(VI编辑器快捷键参考地址 http://hily.me/blog/2006/04/vi-shortcut/)5.gg用于移到缓冲区的第一行6.G用于移到缓冲区的最后...
分类:
其他好文 时间:
2014-08-12 21:45:44
阅读次数:
271
PHP怎么实现网站保存快捷方式
<?php
$Shortcut = "[InternetShortcut]
URL=http://blog.csdn.net/phpfenghuo/
IDList = [{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachme...
分类:
Web程序 时间:
2014-08-11 00:32:11
阅读次数:
305
.shortcut ul li { display: inline; }CSS View CodeHeader ...
分类:
Web程序 时间:
2014-08-05 18:41:30
阅读次数:
361
Android Studio 快捷键 转至 http://www.android-studio.org/index.php/docs/experience/142-androidstudio-shortcut-keysAlt+回车 导入包,自动修正Ctrl+N 查找类Ctrl+Shift+N 查.....
分类:
移动开发 时间:
2014-07-22 22:46:13
阅读次数:
227
Constructing selectorsFor convenience,response objects exposes a selector on .selector attribute,it's totally ok to use this shortcut when possible.//...
分类:
其他好文 时间:
2014-07-15 09:18:04
阅读次数:
220
增加快捷方式和删除快捷方式:
private void addShortcut() {
Intent shortcut = new Intent(
"com.android.launcher.action.INSTALL_SHORTCUT");
// 快捷方式的名称
shortcut.putExtra(Intent...
分类:
移动开发 时间:
2014-07-14 13:10:41
阅读次数:
258
Android添加程序的快捷方式到手机桌面的实现方法。
分类:
移动开发 时间:
2014-07-13 12:39:04
阅读次数:
203