上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 46 下一页
摘要: CPPFLAGS : 预处理器需要的选项 如:-I (大写i指定头文件路径)CFLAGS:编译的时候使用的参数 –Wall –g -cLDFLAGS :链接库使用的选项 –L -l (大写L指定动态库的路径,小写L指定动态库的名称) 阅读全文
posted @ 2019-11-03 22:38 yongfengnice 阅读(9446) 评论(0) 推荐(1) 编辑
摘要: makefile文件三要素以及形式:目标:依赖 行为比如:(编译main.c、test.c,生成main可执行文件)main:main.o test.o gcc -o main main.o test.omain.o:main.c test.h gcc -c main.ctest.o test.c test.h gcc -c test.c$@:表示目标文件$^:表示所有依赖文件$<:表示第一个依赖 阅读全文
posted @ 2019-11-03 21:50 yongfengnice 阅读(1732) 评论(0) 推荐(0) 编辑
摘要: 报错原因:使用Intent传递Bitmap等大数据,传递的parcel size超出了限制,binder事务报错了 阅读全文
posted @ 2019-10-24 16:31 yongfengnice 阅读(4239) 评论(0) 推荐(0) 编辑
摘要: -flattenpackagehierarchy -allowaccessmodification -keepattributes Exceptions,InnerClasses,Signature,SourceFile,LineNumberTable, -dontskipnonpubliclibraryclassmembers -ignorewarnings #kotlin -keep clas 阅读全文
posted @ 2019-10-21 10:01 yongfengnice 阅读(9556) 评论(0) 推荐(0) 编辑
摘要: 2.到官网下载ASM的zip包,解压后得到asm.jar文件,将其copy到platform-tools目录下 阅读全文
posted @ 2019-10-12 14:48 yongfengnice 阅读(306) 评论(0) 推荐(0) 编辑
摘要: val intent = Intent(Intent.ACTION_GET_CONTENT)intent.type = "*/*"intent.addCategory(Intent.CATEGORY_OPENABLE)activity.startActivityForResult(intent, requestCode) override fun onActivityResult(requestC 阅读全文
posted @ 2019-10-10 19:41 yongfengnice 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 有时候chrome inspect打开时出现白屏,原因可能是需要下载一些支持包,但是因为google需要FQ的,所以解决方法就是FQ,哈哈 阅读全文
posted @ 2019-10-08 17:53 yongfengnice 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 1. 编辑 vi ~/.bash_profile 2. 输入内容: export ANDROID_HOME=/Users/yfsu/Library/Android/sdk export PATH=${PATH}:${ANDROID_HOME}/tools export PATH=${PATH}:${ 阅读全文
posted @ 2019-09-26 11:07 yongfengnice 阅读(535) 评论(0) 推荐(0) 编辑
摘要: //Kotlin语法class TestActivity:Activity(){ private var touchEvent: MotionEvent? = null override fun dispatchTouchEvent(event: MotionEvent?): Boolean { if (event?.action == MotionEvent.ACTIO... 阅读全文
posted @ 2019-09-19 14:21 yongfengnice 阅读(976) 评论(0) 推荐(0) 编辑
摘要: class MaxWidthLinearLayout @JvmOverloads constructor( context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0 ) : LinearLayout(context, attrs, defStyleAttr) { override fun onMeasure(width 阅读全文
posted @ 2019-09-05 18:54 yongfengnice 阅读(2559) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 46 下一页