上一页 1 2 3 4 5 6 7 ··· 35 下一页
摘要: 1、打开文件,如果不存在就新建文件: vim 文件名 2、进入后是了一般模式,无法输入文字 输入 i 进去编辑模式,可以直接编辑文件内容 输入 : 进入命令模式,可以键入新命令,回车键执行 3、编辑完成后退出 输入 esc 从编辑模式退回到一般模式 输入 : 进入命令模式 执行命令 wq (保存并退 阅读全文
posted @ 2016-02-29 10:37 行云有影 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1、MaskedImage.java (1)继承自volley的NetworkImageView,方便从网络获取 (2)实现OnClickListener,统一处理头像的点击事件,跳转到用户信息,但别忘了 setOnClickListener(this); (3)成员变量account,保存该用户的 阅读全文
posted @ 2016-02-28 23:58 行云有影 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 1、xml对ImageView的src要设置成selector <ImageView android:id="@+id/like_icon" android:layout_width="@dimen/will_like_icon_width" android:layout_height="@dime 阅读全文
posted @ 2016-02-25 21:45 行云有影 阅读(2116) 评论(0) 推荐(0) 编辑
摘要: Class对象的生成方式如下:1.Class.forName("类名字符串")2.类名.class3.实例对象.getClass() 阅读全文
posted @ 2015-10-09 10:46 行云有影 阅读(150) 评论(0) 推荐(0) 编辑
摘要: A0截取0:substring(1, 2) 阅读全文
posted @ 2015-10-09 10:46 行云有影 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 1jsp页面下不能使用../表示相对路径,默认为webcontent目录下表示webcontent的路径表示webcontent下的extjs引用别用相对路径Done 阅读全文
posted @ 2015-10-09 10:41 行云有影 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1、用Ext注册按钮监听Ext.get(id).on('click',function(){}); Ext.get('xjfq_back1').on('click', function() { me.cardBack(); //cardLay... 阅读全文
posted @ 2015-10-09 10:02 行云有影 阅读(993) 评论(0) 推荐(0) 编辑
摘要: 1Ext.define('assign.BaseViewport', { extend : 'Ext.Viewport', createQueryForm : function(grid) { var form = Ext.create({ xtype... 阅读全文
posted @ 2015-10-09 09:55 行云有影 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1通过var me =this;Ext.define('assign.BaseViewport', { extend : 'Ext.Viewport', initComponent : function() { var me =this; Ext.ge... 阅读全文
posted @ 2015-10-09 09:43 行云有影 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1var columns = [new Ext.ux.grid.CCRowNumberer({width:40}), { header : '排名', dataIndex : 'id', width : 40 }, { header : ... 阅读全文
posted @ 2015-09-18 16:47 行云有影 阅读(191) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 35 下一页