使用MaskFilterMaskFilter类可以为Paint分配边缘效果。对MaskFilter的扩展可以对一个Paint边缘的alpha通道应用转换。Android包含了下面几种MaskFilter:BlurMaskFilter 指定了一个模糊的样式和半径来处理Paint的边缘。EmbossMa...
分类:
其他好文 时间:
2014-12-25 09:47:12
阅读次数:
251
public class EyeView extends FrameLayout {
private Paint paint;
private Bitmap bitmap;
public EyeView(Context context) {
super(context);
init();
}
public EyeView...
分类:
微信 时间:
2014-12-23 21:18:01
阅读次数:
488
CSS动画属性会触发整个页面的重排relayout、重绘repaint、重组recompositePaint通常是其中最花费性能的,尽可能避免使用触发paint的CSS动画属性,在CSS动画中使用webkit-transform: translateX(3em)的方案代替使用left: 3em,因为...
分类:
Web程序 时间:
2014-12-22 22:37:45
阅读次数:
259
最近在开发一个应用,需要用到文本的跑马灯效果,图省事,在网上找,但老半天都找不到,后来自己写了一个,很简单,代码如下:import android.content.Context;import android.graphics.Canvas;import android.graphics.Paint...
分类:
移动开发 时间:
2014-12-22 07:04:12
阅读次数:
253
You have to paint N boards of lenght {A0, A1, A2 ... AN-1}. There are K painters available and you are also given how much time a painter takes to pai...
分类:
其他好文 时间:
2014-12-20 15:26:04
阅读次数:
158
画线 private void Form1_Load(object sender, EventArgs e) { this.Paint += new PaintEventHandler(Form1_Paint); } //画线 void...
在wx.html2.EVT_WEBVIEW_LOADED中用WebView.RunScript运行删除连接目标的脚本javaScriptStr = '''function deleteBlank() { var links = document.links, i...
分类:
Web程序 时间:
2014-12-19 18:51:47
阅读次数:
245
public void clear() { Paint paint = new Paint(); paint.setXfermode(new PorterDuffXfermode(Mode.CLEAR)); canvas.drawPaint(paint...
分类:
移动开发 时间:
2014-12-19 18:41:09
阅读次数:
235
Description假设你有一条长度为5的木版,初始时没有涂过任何颜色。你希望把它的5个单位长度分别涂上红、绿、蓝、绿、红色,用一个长度为5的字符串表示这个目标:RGBGR。 每次你可以把一段连续的木版涂成一个给定的颜色,后涂的颜色覆盖先涂的颜色。例如第一次把木版涂成RRRRR,第二次涂成RGGG...
分类:
其他好文 时间:
2014-12-18 21:55:54
阅读次数:
189
Android微信分享功能实例1 微信开放平台注册2 获得appId,添加到程序中,并运行程序3 使用应用签名apk生成签名,添加到微信开放平台应用签名,完成注册4 测试分享功能。有问题请留言 o(∩_∩)o 哈哈代码如下:package com.wx;import android.app.Acti...
分类:
微信 时间:
2014-12-18 20:28:43
阅读次数:
306