public class AIRS_measurements
extends Activity
AIRS_local| Constructor and Description |
|---|
AIRS_measurements() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
dispatchKeyEvent(KeyEvent event) |
void |
onActivityResult(int requestCode,
int resultCode,
Intent data)
Called when called
Activity has finished. |
void |
onClick(View v)
Called when a button has been clicked on by the user
|
void |
onConfigurationChanged(Configuration newConfig)
Called when the configuration of the activity has changed.
|
void |
onCreate(Bundle savedInstanceState)
Called when the activity is first created.
|
void |
onDestroy()
Called when the activity is destroyed.
|
void |
onItemClick(
Called when clicking on a list item
|
boolean |
onItemLongClick(
Called when a button has been long-clicked on by the user
|
boolean |
onOptionsItemSelected(MenuItem item)
Called when an option menu item has been selected by the user
|
boolean |
onPrepareOptionsMenu(Menu menu)
Called when the Options menu is opened
|
void |
onRestart()
Called when the activity is restarted.
|
void |
onStop()
Called when the activity is stopped.
|
public void onCreate(Bundle savedInstanceState)
savedInstanceState - a Bundle of the saved state, according to Android lifecycle modelpublic void onRestart()
public void onStop()
public void onDestroy()
public void onActivityResult(int requestCode,
int resultCode,
Intent data)
requestCode - ID being used when calling the ActivityresultCode - result code being set by the called Activitydata - Reference to the Intent with result data from the called Activitypublic void onConfigurationChanged(Configuration newConfig)
newConfig - new configuration after changepublic boolean dispatchKeyEvent(KeyEvent event)
public boolean onPrepareOptionsMenu(Menu menu)
menu - Reference to the Menupublic void onClick(View v)
v - Reference to the {android.view.View} of the buttonpublic boolean onOptionsItemSelected(MenuItem item)
item - Reference to the Menuitem clicked onpublic boolean onItemLongClick(parent, View view, int position, long id)
parent - Reference to parent viewview - Reference to the View of the buttonposition - position within parent viewid - index in a list viewpublic void onItemClick(av, View v, int arg2, long arg3)
av - parent viewv - View of clicked itemarg2 - don't actually knowarg3 - item in ListView being clicked