码迷,mamicode.com
首页 >  
搜索关键字:content source    ( 42935个结果
linux下shell脚本执行方法及exec和source命令
exec和source都属于bash内部命令(builtins commands),在bash下输入man exec或man source可以查看所有的内部命令信息。bash shell的命令分为两类:外部命令和内部命令。外部命令是通过系统调用或独立的程序实现的,如sed、awk等等。内部命令是由特...
分类:系统相关   时间:2014-04-30 00:23:34    阅读次数:671
09 Service_01
package com.szy.service;import android.app.Service;import android.content.Intent;import android.os.IBinder;import android.util.Log;public class Exampl...
分类:其他好文   时间:2014-04-30 00:10:08    阅读次数:510
06 bundle 对象
package com.szy.activity;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.util.Log;import android.vie...
分类:其他好文   时间:2014-04-29 23:35:22    阅读次数:590
mysqldump导入导出数据库总结
mysqldump导入导出数据库总结基本的使用方法总结:1 导出所有库 系统命令行 mysqldump -uusername -ppassword --all-databases > all.sql 2 导入所有库 mysql命令行 mysql>source all.sql; 3 导出某些库 系.....
分类:数据库   时间:2014-04-29 18:58:14    阅读次数:717
10 Service02
package com.szy.service;import android.app.IntentService;import android.content.Intent;import android.util.Log;public class ExampleIntentService exten...
分类:其他好文   时间:2014-04-29 18:02:50    阅读次数:432
quarry used equipment
Basalt has a higher hardness with strength 300mp as well as the higher silicon content. And during the actual crushing and broken industry, the basalt...
分类:其他好文   时间:2014-04-29 11:42:47    阅读次数:352
每天一个CSS(box-sizing)
box-sizing 是CSS3中新增的样式。我理解 主要是规定css中box模型的规则。语法box-sizing: content-box|border-box|inherit;content-box 是指定box的宽度和高度分别应用到元素的内容框。在宽度和高度之外绘制元素的内边距和边框。bord...
分类:Web程序   时间:2014-04-29 10:42:45    阅读次数:386
15 SharePreference
package com.szy.shared.activity;import android.app.Activity;import android.content.Context;import android.content.SharedPreferences;import android.con...
分类:其他好文   时间:2014-04-29 10:34:47    阅读次数:407
生成JavaDoc
生成JavaDoc2013年10月26日15:38javadoc-locale en_US -protected -sourcepath . -subpackages com -source 1.6 -encodingUTF-8 -docencoding UTF-8 -d javadoc -vers...
分类:编程语言   时间:2014-04-29 10:25:46    阅读次数:354
父容器不根据内容自适应高度的解决方法
Div不根据内容自适应高度,我们看下面的代码: 当Content内容多时,即使main设置了高度100%或auto。在不同浏览器下还是不能完好的自动伸展。内容的高度比较高了,但容器main的高度还是不能撑开。 我们可以通过三种方法来解决这个问题。 一,增加一个清除浮动,让父容器知道...
分类:其他好文   时间:2014-04-29 10:21:46    阅读次数:349
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!