Back to project page Archeology.
The source code is released under:
GNU General Public License
If you think the Android project Archeology listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Chipotle Software(c) 2013 GPLv3 /*from w ww. j a v a 2 s .c o m*/ */ package com.chipotle.archeology; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.Window; public class DialogActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_dialog); } /** * Callback method defined by the View * @param v */ public void finishDialog(View v) { DialogActivity.this.finish(); } }