6

アイコンの上にこの青いグロー効果を得るにはどうすればよいですか? 手っ取り早くできる方法はありますか?私は本当にこの効果のためにフォトショップを使いたくない.

どんな助けでも本当に感謝しています。

4

1 に答える 1

23

プログラムでグローを生成したい場合は、次の方法で行うことができます。私のアドバイスは、コメントで述べたように、アクティビティの開始時に一度だけ生成してから、それを使用して StateListDrawable を作成することです。

    // An added margin to the initial image
    int margin = 24;
    int halfMargin = margin / 2;

    // the glow radius
    int glowRadius = 16;

    // the glow color
    int glowColor = Color.rgb(0, 192, 255);

    // The original image to use
    Bitmap src = BitmapFactory.decodeResource(getResources(),
            R.drawable.ic_launcher);

    // extract the alpha from the source image
    Bitmap alpha = src.extractAlpha();

    // The output bitmap (with the icon + glow)
    Bitmap bmp = Bitmap.createBitmap(src.getWidth() + margin,
            src.getHeight() + margin, Bitmap.Config.ARGB_8888);

    // The canvas to paint on the image
    Canvas canvas = new Canvas(bmp);

    Paint paint = new Paint();
    paint.setColor(glowColor);

    // outer glow
    paint.setMaskFilter(new BlurMaskFilter(glowRadius, Blur.OUTER));
    canvas.drawBitmap(alpha, halfMargin, halfMargin, paint);

    // original icon
    canvas.drawBitmap(src, halfMargin, halfMargin, null);

    ((ImageView) findViewById(R.id.bmpImg)).setImageBitmap(bmp);
于 2012-08-28T14:57:47.637 に答える