Back to project page DayOfBirth.
The source code is released under:
GNU General Public License
If you think the Android project DayOfBirth listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /* ww w. ja va 2s . co m*/ */ package com.jchg.dayofbirth; import android.app.Activity; import android.os.Bundle; /** * @author Juan Carlos Hdez. * * Last revision: 11/07/13 */ public class About extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about_layout); } }