If you think the Android project My-Wallet-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright 2011-2012 the original author or authors.
*/*www.java2s.com*/
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/package piuk.blockchain.android.ui;
import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.drawable.Drawable;
/**
* @author Andreas Schildbach
*/publicfinalclass CurrencyCodeDrawable extends Drawable
{
privatefinal Paint paint = new Paint();
privatefinal String currencyCode;
privatefinalfloat y;
public CurrencyCodeDrawable(final String currencyCode, finalfloat textSize, finalint color, finalfloat y)
{
paint.setColor(color);
paint.setAntiAlias(true);
paint.setTextSize(textSize);
this.currencyCode = currencyCode;
this.y = y;
}
@Override
publicvoid draw(final Canvas canvas)
{
canvas.drawText(currencyCode, 0, y, paint);
}
@Override
publicint getIntrinsicWidth()
{
return (int) paint.measureText(currencyCode);
}
@Override
publicint getOpacity()
{
return 0;
}
@Override
publicvoid setAlpha(finalint alpha)
{
}
@Override
publicvoid setColorFilter(final ColorFilter cf)
{
}
}