Back to project page myAndroidApps.
The source code is released under:
This is my first GitHub try. Be gentle :)
If you think the Android project myAndroidApps 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 gidy.medappg; /*from w w w.ja v a 2 s.c om*/ import org.apache.log4j.Logger; import gidy.medappg.R; import android.app.Activity; import android.os.Bundle; import android.view.View; public class CallAmbulanceActivity extends Activity { protected static final Logger logger = MedAppLogger.getLogger(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(R.style.MedAppTheme); setContentView(R.layout.activity_call_ambulance); logger.debug("here"); } public void goBack(View view){ logger.debug("here"); finish(); } @Override public void onBackPressed() { logger.debug("here"); super.onBackPressed(); } }