android 图表 MPAndroidChart

添加 maven { url "https://jitpack.io" } 旧版本在 project 的 build.gradle 中增加: allprojects { repositories { jcenter() maven { url "https://jitpack...

android ui 记录

颜色代码 encycolorpedia https://encycolorpedia.cn RapidTables https://www.rapidtables.org/zh-CN/web/color/index.html 让 layout 靠底部 这个 layout 的上层需要是 ...

android 去除标题栏

去除标题栏有两种方法: 直接在 MainActivity 中的 onCreate 里面增加 ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.hide();...

[转] ARGB颜色格式学习

转自: https://blog.csdn.net/q1449660223/article/details/110310208 概述 RGB RGB(Alpha,Red,Green,Blue)色彩模式是工业界的一种颜色标准,是通过对红®、绿(G)、蓝(B)三个颜色通道的变化以及它们相互之间的叠...

[转] 图解YU12、I420、YV12、NV12、NV21、YUV420P、YUV420SP、YUV422P、YUV444P的区别

转自: https://blog.csdn.net/byhook/article/details/84037338 音视频实践学习 android全平台编译ffmpeg以及x264与fdk-aac实践 ubuntu下使用nginx和nginx-rtmp-module配置直播推流服务器 an...

[转] 图像原始格式(YUV444 YUV422 YUV420)一探究竟

转自: https://www.cnblogs.com/tid-think/p/10616789.html#:~:text=%E6%8E%A5%E4%B8%8B%E6%9D%A5%E6%98%AFYUV420,%E6%AF%8F%E5%9B%9B%E4%B8%AAy%E5%88%86%E9%8...

rgba yuv420p

参考 https://www.jianshu.com/p/819c23563c90 https://www.cnblogs.com/linuxAndMcu/p/12127975.html https://blog.csdn.net/xiaibiancheng/article/details/7...

jni 使用 c++ 和 c 不同的格式

jni 如果直接把源文件从 c 改为 cpp, 那么会报错 base operand of '->' has non-pointer type 'JNIEnv {aka _JNIEnv}'和Method 'GetStringUTFChars' could not be resolved ...

qt 增加 mingw 的 libcurl, libcrypto

下载 libcurl 库 https://curl.se/download.html 这个地址下载 win64 的 mingw 版本的 libcurl 二进制文件。然后解压,发现 lib 文件夹下面有两个库文件,libcurl.a 和 libcurl.dll.a. 两个库的区别 在网上搜索了一...

google c++ style 学习

头文件 Self-contained 头文件 #define 为了保证唯一性,#ifndef 的时候,这样用 <PROJECT>_<PATH>_<FILE>_H_。比如 foo/src/bar/baz.h 这个这样写 #ifndef FOO_BAR_BAZ...