殷勤冷风

文章
9
资源
0
加入时间
3年1月12天

android 自定义带描边的TextView

代码如下:public class StrokeTextView extends TextView{ private TextView outlineTextView = null; public StrokeTextView(Context context) { super(context); outlineTex...

[k8s]pod持久存储的几种方式图解

参考: https://kubernetes.io/docs/concepts/storage/volumes/1.emptyDirapiVersion: v1kind: Podmetadata: name: test-pdspec: containers: - image: gcr.io/google_containers/test-webserver name: tes

使用ApachePOI复制pptx文件模板的幻灯片项目场景:问题描述解决方案:

项目场景:项目相关背景:根据固定的ppt模板自动生成报告,会涉及到复制幻灯片问题描述项目中遇到的问题:使用.ppt文件(office 2003或更低版本)文件复制幻灯片无法复制成功,推荐使用.pptx文件(office 2007或更高版本)private XSLFSlide copySlide(XMLSlideShow slideShow, XSLFSlide slide) { List<XSLFShape> shapes = slide.getShapes();

C++:const限定符、const 和引用,指针

constconst必须初始化,创建后其值无法改变。const 可以用字面值初始化,也可以用一个对象初始化 (对象是否是const无关紧要)。//如: int i = 42; const int j = i; // 合法 int x = j; // 合法默认情况下,const的作用域为本文件。若想多个文件共享const,则需要在声明和定义处都用 extern 修饰,, (非con...

MTK编译及修改记录Server settingsInternal, do not touch

2016年我从app开发转到做系统开发,这是我刚做系统开发时做的笔记。1.机器型号,机器盘符的修改位置alps/build/tools/buildinfo.sh 编译后会在alps/out/target/product/s88m/system/build.prop下生成。2.蓝牙名称修改位置alps/device/mediatek/common/custom.conf。3.Build ...