package com.zmosoft.flickrfree;
import android.os.Bundle;
// This is the main class for the application. It is an extension of the UserView
// class, so when this is loaded the app will show the UserView screen.
public class FlickrFree extends UserView {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
}
|