public class MainActivity
extends Activity
Constructor and Description |
---|
MainActivity() |
Modifier and Type | Method and Description |
---|---|
void |
graphData(View view)
The graphData function is called when the Graph button is pressed; it initiates the activity which graphs the data
|
boolean |
onCreateOptionsMenu(Menu menu) |
void |
retrieve(View view)
The Retrieve function is called when the Retrieve button is pressed; it initiates the activity which retrieves the data.
|
void |
store(View view)
The store function is called when the Store button is pressed; it initiates the activity which stores the data.
|
public void retrieve(View view)
view
- The function takes the current view as a parameter since the initiator is a button press.public void store(View view)
view
- The button press from the current view is used to initiate this function.public void graphData(View view)
view
- The function takes the current view as a parameter since the initiator is a button press.public boolean onCreateOptionsMenu(Menu menu)