Back to project page Gloggr.
The source code is released under:
GNU General Public License
If you think the Android project Gloggr 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.JordHan.Gloggr.Activities.Notification; // w ww . ja va 2 s. co m import com.JordHan.Gloggr.R; import android.app.Activity; import android.os.Bundle; public class AboutDeveloperActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Push instance of activity to super super.setTitle(getString(R.string.about_developer_title)); // Set title // Set up layout setContentView(R.layout.aboutdeveloper_activity); } }