Back to project page lostpets.
The source code is released under:
GNU General Public License
If you think the Android project lostpets 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 fr.esiea.mobile.lostpets.activity; /* ww w . ja v a 2 s. c o m*/ import android.app.Activity; import android.os.Bundle; import fr.esiea.mobile.lostpets.R; //This class is the InfosActivity linked to activity_infos.xml public class InfosActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_infos); } }