zoukankan      html  css  js  c++  java
  • android 放大镜ShapeDrawable妙用

    android上想实现局部放大的效果,比如画面中加个放大镜的效果

    发现ShapeDrawable是一个最好的选择。

    首先,ShapeDrawable构造的时候可以指定描画的形状, 

    其次,可以通过shape.getPaint().setShader();指定Shader,shader可以接受一个图片和matrix

    所以问题就顺利的解决了:)

    具体实现如下:


    float scale = 1.2f;
    
    int cx = 224;
    int cy = 357;
    int r = 200;
    
    
    // 指定形状创建一个ShapeDrawable
    ShapeDrawable shape=new ShapeDrawable(new OvalShape());
    Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.bg1);
    BitmapShader bs = new BitmapShader(bm, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
    
    Matrix m = new Matrix();
    m.setTranslate(r-cx, r-cy);
    m.postScale(scale, scale);
    bs.setLocalMatrix(m);	// 图形变换可以在这里实现,包括区域指定
    
    // 为ShapeDrawable设置Shader
    shape.getPaint().setShader(bs);
    
    // 指定描画目标位置
    shape.setBounds((int)(cx-r*scale),(int)(cy-r*scale),(int)(cx+r*scale),(int)(cy+r*scale));
    canvas.drawBitmap(bm, 0, 0, null);
    shape.draw(canvas);


  • 相关阅读:
    oracle索引
    linux命令
    struts2的配置文件struts.xml详解
    oracle删除一个表中的重复数据,且只保留一条
    初步研究java类的加载机制
    java读取Properties配置文件
    利用oracle闪回来找回被drop的表
    快速排序Quicksort
    树与树的概念
    递归
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/3071907.html
Copyright © 2011-2022 走看看