Back to project page Spectograph.
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.
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(); } }