Coming from a .NET C# background, new to Java....
How do I re-write this code to point the listener to a normal function?
confirmButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
//Some Code Here;
}
});