건강보-호흡 주파수 부분 개발(7)
호흡 주파수 페이지
호흡 주파수 페이지는 서로 다른 데시벨 수를 갱신하여 새로 채집한 소리의 크기를 동적으로 보여야 한다. 이 종류는 앞의 도구 종류인 월드에서 현재의 데시벨 값을 얻을 수 있고 과도적으로 느린 데시벨 페이지를 갱신할 수 있다.코드:
public class SoundDiscView extends ImageView {
private float scaleWidth, scaleHeight;
private int newWidth, newHeight;
private Matrix mMatrix = new Matrix();
private Bitmap indicatorBitmap;
private Paint paint = new Paint();
static final long ANIMATION_INTERVAL = 20;
public SoundDiscView(Context context) {
super(context);
}
public SoundDiscView(Context context, AttributeSet attrs) {
super(context, attrs);
}
private void init() {
Bitmap myBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.noise_index);
int bitmapWidth = myBitmap.getWidth();
int bitmapHeight = myBitmap.getHeight();
newWidth = getWidth();
newHeight = getHeight();
scaleWidth = ((float) newWidth) / (float) bitmapWidth; //
scaleHeight = ((float) newHeight) / (float) bitmapHeight; //
mMatrix.postScale(scaleWidth, scaleHeight); // mMatrix
indicatorBitmap = Bitmap.createBitmap(myBitmap, 0, 0, bitmapWidth, bitmapHeight, mMatrix, true); // bitmap
paint = new Paint();
paint.setTextSize(18 * ScreenUtil.getDensity(getContext()));
paint.setAntiAlias(true); //
paint.setTextAlign(Paint.Align.CENTER);
paint.setColor(Color.WHITE);
}
public void refresh() {
postInvalidateDelayed(ANIMATION_INTERVAL); // view
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (indicatorBitmap == null) {
init();
}
mMatrix.setRotate(getAngle(World.dbCount), newWidth / 2, newHeight * 215 / 460); //
canvas.drawBitmap(indicatorBitmap, mMatrix, paint);
canvas.drawText((int) World.dbCount + " DB", newWidth / 2, newHeight * 36 / 46, paint); //
}
private float getAngle(float db) {
return (db - 85) * 5 / 3;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.