Paint paint1 = new Paint();paint1.setXfermode(new
PorterDuffXfermode(Mode.CLEAR));canvas.drawPaint(paint1);paint1.setXfermode(new
PorterDuffXfermode(M...
分类:
其他好文 时间:
2014-06-29 12:37:10
阅读次数:
202
Android已经具有内置到操作系统的安全功能,显著降低应用安全问题的频次和影响,但作为应用程序开发人员,我们也需要注意在开发应用程序时的安全问题. 安全级别是取决于应用程序的类型和域. 这里有我们需要注意的一些潜在的安全问题,我已经收集到了这篇文章中.
在这里我列出来在开发应用中需要保护应用程序最常见的一些事项:
1.不要把私人或敏感数据储存在SD卡。要存储在内部存储的文件,请使用以下的模式(Context.MODE_PRIVATE)openFileOutput&openFileInput方法。如果...
分类:
移动开发 时间:
2014-06-09 23:25:33
阅读次数:
368
向大家分享一下最近排查“黑色1秒”问题的进展,“黑色1秒”的问题表现详见什么是黑色1秒。1.发生在w3wp进程内;2.请求未进入.NET线程池;3.发生在处于user-mode的IIS核心模块;4.最大的两个嫌疑对象:w3tp与w3dt。
分类:
其他好文 时间:
2014-06-09 22:08:08
阅读次数:
519
今天开始学习ucore的lab。按照lab0的文档,显示介绍了80386的4个工作模式:real-address mode, protected mode,
SMM mode, virtual 8086 mode.ia-32-architectures-software-developer-syst...
分类:
其他好文 时间:
2014-06-09 21:24:48
阅读次数:
443
android launch mode应用场景:singleTop适合接收通知启动的内容显示页面。singleTask适合作为程序入口点。singleInstance适合需要与程序分离开的页面。...
分类:
其他好文 时间:
2014-06-07 13:58:50
阅读次数:
401
前言
欢迎大家我分享和推荐好用的代码段~~
声明
欢迎转载,但请保留文章原始出处:
CSDN:http://www.csdn.net
雨季o莫忧离:http://blog.csdn.net/luckkof
正文
[Description]
如何在java/native层修改一个文件的权限(mo...
分类:
移动开发 时间:
2014-06-07 13:11:58
阅读次数:
252
Swift is a new programming language for iOS and OS X apps that builds on the best of C and Objective-C, without the constraints of C compatibility. Swift adopts safe programming patterns and adds mode...
分类:
其他好文 时间:
2014-06-04 13:19:23
阅读次数:
282
【Sprite Editor】
在Unity3D中,一个图片可以有多种类型(如下图)。对于2D游戏开发,最常用的类型就是Sprite。 下图是Sprite Texture的属性,Packing
Tag用于指定packing在哪一个tag。Filter Mode指定Texture的Filter...
分类:
其他好文 时间:
2014-06-02 18:09:17
阅读次数:
311
4.2 THE COMPLETENESS THEOREM(2) If A theory
$\mathbf{T}$ has a model, then it is consistent.ProofSuppose that $\mathbf{T}$
has a mode $\mathbf{\alpha}...
分类:
其他好文 时间:
2014-06-02 06:23:48
阅读次数:
189
<?php
/**
* 文件操作(生成日志)支持多条插入
* (如果插入多条语句并换行 用','逗号分开)
*
*/
class log {
public $path = './info.txt'; //默认值文件
public $mode = 'a'; //默认追加写
public $content = '默认值:空'; //默认内容是 空
public ...
分类:
Web程序 时间:
2014-06-02 02:35:45
阅读次数:
231