This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.Activity; | |
import android.app.Application; | |
import android.os.Bundle; | |
import com.google.analytics.tracking.android.EasyTracker; | |
public class MainApplication extends Application { | |
private boolean locationNeedsUpdated = true; | |
private int createdActivityInstanceCount = 0; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Bill on 7/28/14. | |
*/ | |
public class LearningApplication extends Application { | |
private static final String TAG = QuickeyLearningApplication.class.getSimpleName(); | |
@Override | |
public void onCreate() { | |
super.onCreate(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.Context; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.BaseAdapter; | |
/** | |
* An implementation of {@link BaseAdapter} which uses the new/bind pattern and | |
* view holder pattern for its views. | |
* |