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; /*from w w w .j av a 2 s. c o m*/ import android.app.Activity; import android.os.Bundle; import com.JordHan.Gloggr.R; public class AboutAppActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Push instance of activity to super super.setTitle(getString(R.string.about_app_title)); // Set title // Set up layout setContentView(R.layout.aboutapp_activity); } }