犹豫饼干

文章
6
资源
0
加入时间
2年10月17天

android 主题 实现,Android Application Theme的实现及管理

Android Application Theme的实现一,原理1,theme的形式1-1 内置theme (一组特定前缀后缀的图片)1-2 外置theme (只包含规范命名图片的apk)2,实现根据特定theme获取指定图片资源,并设置在view上。步骤:2-1获得指定包名的Context2-2通过Context获得指定theme的图片资源代码如下:public Context getTheme...

Java中的数组实现冒泡排序法

/** * 不使用Arrays的sort方法来排序无规则数组; * * */public class MaoPaoDemo { public static void main(String[] args) { int [] arrs = {9,5,8,10,4,2,0,3,1,7,6}; for (int i = 0; i < arrs.le...

linux编程之fcntl使用详解

功能描述:根据文件描述词来操作文件的特性。 #include <unistd.h> #include <fcntl.h> int fcntl(int fd, int cmd); int fcntl(int fd, int cmd, long arg); int ...