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; // w ww.jav a 2 s .co m import com.JordHan.Gloggr.R; import android.app.Activity; import android.os.Bundle; public class CurrentlyPlayingActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Push instance of activity to super super.setTitle(getString(R.string.currently_playing_title)); // Set title // Set up layout //setContentView(R.layout.currentlyplaying_activity); } }