Android Open Source - Spectograph Spectograph






From Project

Back to project page Spectograph.

License

The source code is released under:

Copyright (c) 2013 Salman aljammaz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...

If you think the Android project Spectograph 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

package net.x65.spectograph;
//from w ww . j  a  v a 2s  . c  o  m
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import java.util.ArrayList;

public class Spectograph extends Activity {
  private static final String TAG = Spectograph.class.getSimpleName();

  Spectogram v;

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
  }

  @Override
  protected void onResume() {
    super.onResume();
    init();
  }

  @Override
  protected void onPause() {
    release();
    super.onPause();
  }

  @Override
  protected void onDestroy() {
    release();
    super.onDestroy();
  }

  void init() {
    v = (Spectogram) findViewById(R.id.spectogram);
  }

  void release() {
    v.release();
  }
}




Java Source Code List

net.x65.spectograph.DrawThread.java
net.x65.spectograph.FFT.java
net.x65.spectograph.Spectogram.java
net.x65.spectograph.SpectographApp.java
net.x65.spectograph.Spectograph.java