anroid-杂乱
文章平均质量分 53
爱吃香蕉的猴子0000
这个作者很懒,什么都没留下…
展开
-
Android Camera数据流分析全程记录
SurfaceFlinger 是Android multimedia 的一个部分,在Android 的实现中它是一个service ,提供系统范围内的surface composer 功能,它能够将各种应用程序的2D,3D surface 进行组合。每个应用程序可能对应着一个或者多个图形界面,而每个界面我们就称之为一个surface ,或者说是window ,在上面的图中我们能看到4 个surface ,一个是home 界面,还有就是红、绿、蓝分别代表的3 个surface ,而两个button 实际是h转载 2021-09-16 16:38:42 · 445 阅读 · 0 评论 -
android drawArc使用
Hello, 大家好,我是爱吃香蕉的猴子,绘制弧度//demo/***********配置画笔*************/Paint paint=new Paint(); //采用默认设置创建一个画笔paint.setAntiAlias(true);//使用抗锯齿功能paint.setColor(0xFFA4C739); //设置画笔的颜色为绿色paint.setStyle(Paint.Style.STROKE);//设置画笔类型为STROKE(个人感觉是描边的意思)/*********原创 2021-09-16 14:16:50 · 3371 阅读 · 0 评论 -
android文件下载和上传
推荐https://github.com/caoyongren/DUtil转载 2021-09-15 16:36:42 · 234 阅读 · 0 评论 -
StateMachine学习
Hello, 大家好,我是爱吃香蕉的猴子,写一下 学习的StateMachine;学习文章转载 2021-09-15 15:40:00 · 215 阅读 · 0 评论 -
surfaceflingerTest
android.mkLOCAL_PATH:= $(call my-dir)include $(CLEAR_VARS)LOCAL_SRC_FILES:= \ FrameBufferTest.cppLOCAL_SHARED_LIBRARIES := \ liblog \ libutils \ libcutils \ libgui \ libui \ libbinderLOCAL_MODULE:= FrameBufferTestinclud原创 2021-08-16 13:47:20 · 189 阅读 · 0 评论 -
自定义View基础画线案例
import java.security.PublicKey;import android.R.integer;import android.content.Context;import android.graphics.Bitmap;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Paint.Style;imp原创 2021-05-25 15:56:00 · 150 阅读 · 0 评论 -
android-杂乱
android-杂乱hi, 大家好,我是爱吃香蕉的猴子, 整一个杂乱系列 /** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */ public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (d原创 2021-02-22 13:18:48 · 130 阅读 · 0 评论