本文介绍在Android开发中关于资源文件的存储操作。对于Android资源也是非常重要的,主要包括文本字符串(strings)、颜色(colors)、数组(arrays)、动画(anim)、布局(layout)、图像和图标(drawable)、音频视频(media)和其他应用程序使用的组件。 在....
分类:
移动开发 时间:
2015-01-16 20:40:12
阅读次数:
317
一:文本的颜色选择器:在res目录下面创建color文件夹,在color文件夹下面创建font_style_colors.xml文件在布局文件中使用字体颜色选择器二、关于Calener的比较calendar的compareto测试时出现了两个时间相等,但比较结果不是我断言的,经高人指点,这才明白,原...
分类:
移动开发 时间:
2015-01-15 10:35:52
阅读次数:
495
RGB颜色查询对照表RGB颜色对照表#FFFFFF #FFFFF0 #FFFFE0 #FFFF00 #FFFAFA #FFFAF0 #FFFACD #FFF8DC #FFF68F #FFF5EE #FFF0F5 #FFEFDB #FFEFD5 #FFEC8B #FFEBCD #FFE7BA #FFE4E1 #FFE4C4 #FFE4B5 #FFE1FF #FFDEAD #FFDAB9 #FFD70...
分类:
移动开发 时间:
2015-01-14 11:12:03
阅读次数:
191
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the integers ...
分类:
其他好文 时间:
2015-01-13 09:01:28
阅读次数:
117
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2015-01-11 06:08:24
阅读次数:
169
一、设置字体。使用字体:Fixedsys Excelsior 3.01。步骤1:下载字体。步骤2:安装字体,控制面板->字体,复制下载的字体进去。步骤3:打开VS2010,选择菜单:Tools->Options->Environment->Fonts and Colors.,选择Fixedsys字体...
分类:
其他好文 时间:
2015-01-10 22:12:51
阅读次数:
345
过了好几年,又开始用myeclipse 都忘了, 这里贴图用于记录1.打开window - preferences。2.打开General-Appearance-Colors and Fonts 设置字体这里可以修改字体的大小, 字体的眼色等等。 xml的字体也是在这里设置。 选择basic就可以了...
分类:
系统相关 时间:
2015-01-09 16:57:57
阅读次数:
247
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2015-01-08 19:59:45
阅读次数:
151
1、快捷键格式化文本:Ctrl+Alt+L注释:Ctrl+/2、字体设置File→Settings→Editor→Colors&Fonts→Font 设置字体为Consolas如图:3、css格式设置File→Settings→Code Style→CSS 设置格式在一行显示如图:4、新建项目①在磁...
分类:
其他好文 时间:
2015-01-06 17:10:22
阅读次数:
149
https://oj.leetcode.com/problems/sort-colors/http://blog.csdn.net/linhuanmars/article/details/24286349publicclassSolution{
publicvoidsortColors(int[]A)
{
//SolutionA:
sortColors_CountColor(A);
//SolutionB:
//sortColors_MergeSort(A,0,A.length-1);
}
///////..
分类:
其他好文 时间:
2015-01-04 19:37:46
阅读次数:
167