自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

feather(猎羽)

只有疯狂到认为自己能改变世界的人、才能真正的改变世界

  • 博客(25)
  • 资源 (5)
  • 收藏
  • 关注

原创 Android四大组件机制详解

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79219316 直接从源码角度分析四大组件的机制 所有知识点以面试题形式汇总,便于学习和复习背诵 Android四大组件机制详解版本:2018.2.5-1Android四大组件机制详解参考和学习资料ActivityService序列...

2018-01-31 16:48:07 788

原创 Android绘图机制知识点汇总

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79210109 本文介绍Android绘图相关知识点,包括: 1. 2D绘图-Canvas、paint 2. 如何用颜色矩阵处理bitmap 3. 如何用像素点、颜色块处理bitmap 4. 如何使用变换矩阵处理图片 5. 如何使用画笔做特效处理...

2018-01-30 20:03:14 257 1

原创 Android面试题-IPC

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79190230IPC-进程间通信(62题)版本:2018/2/4-1 选取总结自《Android开发艺术探索》。 文本包含两部分,1、对知识点就行归纳汇总 2、讲解IPC知识点 链接:http://blog.csdn.net/feather_wch/a...

2018-01-28 22:24:17 455 1

原创 Window和WindowManager知识点深入解析

关键字:Window WindowManager Android转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79186967 以面试题形式总结Window、WindowManager所有知识点 总结Window和WindowManager的基本使用以及概念 分析Window的内部机制 分析Activ...

2018-01-28 15:14:07 401 1

原创 Unable to add window android.view.ViewRootImpl$W@56bd4c5 -- permission denied for window type 2010

Unable to add window android.view.ViewRootImpl$W@56bd4c5 – permission denied for window type 2010解决办法在Android 6.0及以上版本需要动态申请权限:方法一:手动去系统设置中打开Draw over other apps权限(在其他app上绘制的权限) settin

2018-01-28 10:25:26 2858 2

原创 Unable to add window android.view.ViewRootImpl$W@1a8910d -- the specified window type 0 is not valid

Unable to add window android.view.ViewRootImpl$W@1a8910d – the specified window type 0 is not valid

2018-01-28 10:10:09 3772 1

转载 Genymotion安装使用教程详解

原文链接:https://www.cnblogs.com/whycxb/p/6850454.html补充:安装好之后遇到Genymotion无法启动虚拟机的问题:Unable to start the virtual device. VirtualBox cannot start the virtual device实际解决办法参考:http://blog.csdn.net

2018-01-28 08:04:42 1264 1

原创 Unable to start the virtual device. VirtualBox cannot start the virtual device.

Unable to start the virtual device. VirtualBox cannot start the virtual device.解决办法: 删除跟随Genymotion安装的VirtualBox安装最新版的VirtualBox 链接:https://pan.baidu.com/s/1jKpGMQa 密码:dcuk——(如果失效,请留言,会立即补种

2018-01-28 07:54:40 1180 1

原创 apm install 没反应

关键字:apm install,atom 插件 安装在安装atom插件时,运行atom install没有反应。解决方法挂上shadow#socks(去除#)代理,进行科学上网打开命令行(win+R),输入cmd执行:apm config set http-proxy http://127.0.0.1:1080apm config set https-proxy ht

2018-01-28 07:42:11 2070

原创 Android中RemoteViews应用与原理:通知栏和桌面小部件

关键字:RemoteView、通知栏、桌面小部件转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79175518 本文包含RemoteView在通知栏和桌面小部件上的使用、RemoteViews的内部原理、RemoteViews的意义。 所有知识点都以面试提问的形式总结。RemoteViews应用与原理:...

2018-01-26 18:20:45 900 1

原创 Android动画深入分析-知识点大全

转载请注明链接: http://blog.csdn.net/feather_wch/article/details/79153727 以面试提问形式总结Android动画所有知识点。适合学习或者复习。 主要包括:View动画的定义和使用,属性动画的定义和使用以及插值器、估值器的作用,以及属性动画的原理 代码部分用Kotlin/java方式实现。 Android动...

2018-01-24 17:49:18 406 1

原创 Android多线程

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79132183 包含:线程与进程概念、Java中同步、阻塞队列、线程池和AsyncTask的详细解析Android中的多线程(45题)版本:2018/2/4-1Android中的多线程45题线程与进程线程同步Java中的volatile阻塞...

2018-01-22 18:32:53 747 1

原创 Android中的Drawable基础与自定义Drawable

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79124608 本文要点: 1. 介绍Android中Drawable的相关知识点,并且介绍如何自定义Drawable。 2. Drawable能实现缩放、渐变、逐帧动画、静态矢量图、矢量图动画等功能 3. Drawable提供一种比自定义View更轻量级的...

2018-01-22 01:47:48 76558 13

原创 自定义ViewGroup实现HorizontalScrollView的效果

自定义ViewGroup主要有三个步骤: 1. 实现onLayout进行布局 2. 实现onMeasure测量 3. 支持margin 4. 实现弹性滑动 5. 解决滑动冲突class CustomViewByViewGroup(context: Context, attrs: AttributeSet?, defStyleAttr: Int, defStyleRes: I

2018-01-21 10:48:47 295

原创 error: expected reference but got (raw string) @+android:style/Animation.Translucent.

报错: error: expected reference but got (raw string) @+android:style/Animation.Translucent.解决办法:在gradle.properties中添加下列代码:android.enableAapt2=false原因分析:本质其实修改相应的错误就可以解决该问题,而不需要关闭aapt2。但是暂

2018-01-19 16:49:44 8823 2

原创 error: style attribute ‘@android:attr/windowEnterAnimation’ not found.

报错 error: style attribute ‘@android:attr/windowEnterAnimation’ not found.原因提示我们找不到@android:attr/windowEnterAnimation,因为已经不支持@开头使用android自带的属性,我们只要把@符号删掉就可以了。注意:网上一些解决办法是直接把aapt2给关掉,这种掩耳盗铃式的

2018-01-18 13:09:57 8470 9

原创 Android View的工作原理

标签: Android View转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79080571 View所有工作原理的知识点。 本文总结归纳View工作原理的所有知识点,以类似面试提问的形式进行记录,适合初次学习或者作为复习面试的材料。View的工作原理版本:2018/4/25-1Vie...

2018-01-16 23:50:40 929 1

原创 Instant Run is disabled for non-debug variants

报错: Instant Run is disabled for non-debug variants解决办法:我是在用JRebel for Android插件时出现了上面的提示,原因是编译版本是release版本,因此不能使用。需要在Build Variants中换成debug版本。网上提供的解决办法如下(添加内容到build.gradle文件中):buildType

2018-01-16 19:41:31 596 1

原创 java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/***.so: has text relocations

报错: java.lang.UnsatisfiedLinkError: dlopen failed: …………… .so: has text relocations原因:在Android开发中调用.so文件,在Android6.0版本中报了上面的错误,经查证应该是so文件的编译版本sdk过低,应该在6.0的sdk以下。解决办法:需要将项目目标SDK版本降低。 在本人

2018-01-16 19:40:19 8676 1

原创 EventBus要点和源码解析

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/79042406 总结EventBus的知识点 分析EventBus源码的要点,包括: 1. EventBus的构造源码 2. 订阅者注册的源码 3. 事件发送的源码 4. 订阅者取消注册的源码EventBus要点和源码解析版本:20...

2018-01-12 11:50:31 307 1

原创 Kotlin教学(二)函数

Kotlin教学(二)函数标签: Kotlin 本文包括: 1. 介绍用于集合、字符串和一般表达式的函数 2. 如何使用命名参数,默认参数值,中缀调用语法 3. 如何通过扩展函数和扩展属性将Java库适配到Kotlin中 4. 如何使用顶层和局部的函数和属性构造你的代码Kotlin教学二函数函数2-1 创建Kotlin中的集合2-2 使函数

2018-01-06 18:56:43 558

转载 Disconnected: No supoorted authentication methods avaliable(server sent: publickey)

Disconnected: No supoorted authentication methods avaliable(server sent: publickey),小乌龟的常见错误解决办法

2018-01-04 10:03:58 374 1

原创 Android View的事件体系

转载请注明链接:http://blog.csdn.net/feather_wch/article/details/78955689 内容学习总结自《Android开发艺术探索》 代码用Java/Kotlin方式实现View的事件体系(49题)版本:2018.1.30-4View的事件体系49题1-View基础2-View的滑动3-弹性滑动4-View...

2018-01-02 20:53:16 428 2

原创 Error: Could not fork child process: Resource temporarily unavailable (-1)-git bash报错

打开Git Bash报错: Error: Could not fork child process: Resource temporarily unavailable (-1). DLL rebasing may be required; see ‘rebaseall / rebase –help’.打开Cmd执行命令:

2018-01-02 11:56:39 10596 6

原创 Kotlin教学(一)基础篇

Kotlin教学(一)基础篇 本文摘要:函数、变量、类、枚举和属性流程控制“聪明转换”抛出和处理异常

2018-01-01 19:27:47 1057

ncurses.tar.gz

ncurses是图形交互功能的动态库,如果没有它在执行”make menuconfig“命令配置程序的时候会出错。

2016-02-25

arm-linux-gcc-3.4.5-glibc-2.3.6.tar.bz2

Linux安装交叉编译工具链时,需要安装arm-linux-gcc。这里是压缩包。使用方法: tar xjf arm-linux-gcc-3.4.5-glibc-2.3.6.tar.bz2 //解压缩 在环境变量中增加路径 export PATH=$PATH: 所在目录/gcc-3.4.5-glibc-2.3.6/bin 或者在/etc/environment设置,避免每次都要手动设置 PATH=“原先内容 : 所在目录/gcc-3.4.5-glibc-2.3.6/bin” 记得要先加上:再加上路径

2016-02-25

Linux Device Drivers.3th.pdf Linux设备驱动第三版 英文版

Linux Device Drivers.3th,第三版英文版,希望能帮助大家。

2016-02-17

深入理解Linux内核 第三版(英文版)

深入理解Linux内核 第三版(英文版),有目录标签,希望能帮助到大家,也希望大家有所收获。

2016-02-17

Advanced Programming in the UNIX Environment,英文版, 3rd Edition

英文版的Advanced Programming in the UNIX Environment,是最新的第三版,有目录标签,是PDF格式。自己辛苦收集的希望大家支持。也希望大家能有所收获。

2016-02-05

空空如也

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

TA关注的人

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