Back to project page Exif-Editor.
The source code is released under:
MIT License
If you think the Android project Exif-Editor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * @user https://github.com/EgaTuts//from ww w . ja v a 2 s .com * @repo https://github.com/EgaTuts/Exif-Editor.git * @file https://github.com/EgaTuts/Exif-Editor/blob/master/src/git/egatuts/exifeditor/MainActivity.java * @package git.egatuts.exifeditor * @license MIT (http://www.opensource.org/licenses/MIT) */ package git.egatuts.exifeditor; import android.os.Bundle; import git.egatuts.exifeditor.R; import git.egatuts.android.fragment.EgaFragmentActivity; /** * Main Android application activity called from the android launcher. * @author Esa Garca <egatuts@gmail.com> * @author EgaTuts <egatuts@gmail.com> * @version 1.0.0 * @created 30/8/2014 at 17:23:14. */ public class MainActivity extends EgaFragmentActivity { @Override public void onCreate (Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }