自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (3)
  • 收藏
  • 关注

原创 Android studio 导入linphone2016-android

1、从GitHub下载压缩版本 https://github.com/huynhtran1509/linphone20162、打开Android Studio ,导入工程文件:File -> new -> import project3、通过gradle同步时出现如下错误:Error:SSL peer shut down incorrectly解决:将工程结构中的版本更改为本AS的

2017-05-30 16:39:21 2217

转载 intent详解(二)

前言:上篇讲解了有关intent的基础知识,现在通过几个实例讲讲intent这几个属性的具体应用,还有,(题外话)我发现不能一直听《一生所爱》太悲凉,整得我一晚上都没劲头了,心情很低落,看来以后还是少听悲伤的歌为好。相关链接:《intent详解(一)》一、使用包含预定义动作的隐式Intent效果图:     初始状态(一个按钮)

2017-01-04 16:50:33 222

转载 intent详解(一)

前言:通过重新翻看android入门书籍,才发现原来自己露掉了那么多基础知道。原以为有了C的基础,快速开发应该是没有问题的了,但没有遇到问题的时候还是海搜,只知道这么写能完成这个功能,但为什么要这么写还是不太清楚,看来还是要好好把基础打一打,把android基础看完以后,再看看JAVA的基础知识。关于这个问题,写两篇,这篇基础知识讲解,下一篇代码实战。相关文章:《intent详解(

2017-01-04 16:48:29 260

转载 extends Thread 与 implements Runnable 的区别

1、通过实现Runnable接口创建线程(1).定义一个类实现Runnable接口,重写接口中的run()方法。在run()方法中加入具体的任务代码或处理逻辑。(2).创建Runnable接口实现类的对象。(3).创建一个Thread类的对象,需要封装前面Runnable接口实现类的对象。(接口可以实现多继承)(4).调用Thread对象的start()方法,启动线程

2016-12-15 14:23:44 409

转载 android NDK开发小结

最近几天看了有关android NDK方面的开发博客,相对此对一下总结:实验平台:操作系统:win7开发环境:Eclipse+ADT+AVD+JDK1.6+Cygwin+android NDK1.6_r1android开发环境的搭建,可以参考[1].android NDK环境搭建可以参考[2].注:1.JDK1.6安装的时候,没有发现问题,用Eclipse很久了,也

2016-12-14 10:49:03 440

转载 NDK/SDK/JNI

 首先,我们要弄懂几个概念,何为NDK,它和SDK以及JNI有什么关系?请前看下图:JNI (Java Native Interface),Java的本地接口      JNI是Java众多开发技术中的一门,意在利用本地代码,为Java程序提供 更高效,更灵活的拓展。应用场景包括:对运行效率敏感的算法实现、跨平台应用移植、调用系统的底层驱动、调用硬件等。尽管Java一贯以其良好

2016-12-14 10:42:55 318

转载 Git和GitHub使用总结

常用命令: git克隆项目(下载代码)#git clone http://192.168.0.223/git/testgit clone git@github.com:laiweiwei/vms.gitgit clone git@github.com:syking/smrt-lbs-new.git复制粘帖方法:git bash控制台--标题栏--右键--编辑

2016-12-08 16:11:54 268

转载 git 删除github上的文件

硬盘删除文件后,执行$ git status 会提示你仍然需要$ git rm  此时如果是要删除大批量文件,这么一个一个命令下去不得累死人啊 其实可以这样(不管之前有没有已经本地物理删除) 执行 $ git rm * -r(记得,cd 到你要删除的目录下。当然 * 可以换成指定目录) 这时删除文件已经进入本地缓存区, 接下来就是正常的提交操

2016-12-08 16:08:09 3099

转载 github 初级使用

我先用我自己的话简单的说一下 github 的功能, github 是一个代码托管的公司。 注册一个免费用户,代码是公开的。 付费用户代码是收到保护的。第一  去github 注册一个用户 https://github.com/第二 添加ssh 登录公密 (http://pseudo.hoop.blog.163.com/blog/static/132509117201123

2016-12-08 15:51:57 283

带SD卡嵌入式文件系统学习资料

The relationship between weight (mass) and performance of an airplane is generally well understood by most pilots and nonpilots too. Try to put too much weight on those wings and the takeoff is going to be longer—much longer, or actually so long that there is not enough runway to continue and there is no takeoff at all. Ouch! The more common problem seems to be in understanding how much all that stuff that you (or your significant other) want to bring along actually weighs. Packing the airplane for a trip with friends or family is just like packing your backpack for an excursion in the outdoors. The fact that everything seemed to fit in does not mean you will be able to lift it. As a pilot you won’t be allowed to guess at it; you will have to compile a weight and balance sheet and, if necessary, use a scale to determine the exact numbers and decide what to sacrifice: some of the load or maybe some of the fuel. One thing that I can strongly discourage you from doing, though, is to ask your significant other to step on the scale.

2014-09-16

MFC制作的Windows字库提取工具

自己之前做的提取Windows的矢量字库,可以生成任意大小的点阵字模文件。 大家可以作为参考,更改生成自己格式的数据文件。

2014-09-16

STM8_Cosmic_C编译器破解版for_STVD.rar

加压安装后将License拷贝到安装目录即可,配套STVD使用

2011-10-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除