Back to project page droidling.
The source code is released under:
Copyright (c) 2012 Keith Trnka Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project droidling 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 com.github.ktrnka.droidling; /*from ww w. jav a2s . c om*/ import android.os.Bundle; import com.actionbarsherlock.app.SherlockActivity; /** * The activity that describes the app, the author, etc. Not much code, most of * the work is in the XML file. * * @author keith.trnka */ public class AboutLangIDActivity extends SherlockActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about_langid); } }