If you think the Android project magicAnnotator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Magic Annotator - The only thing you need to write down whatever you want.
* Copyright (C) 2013 Nahuel Barrios <barrios.nahuel@gmail.com>.
*//www.java2s.com
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*//**
* MakeTeamsActivity.java Created by: Nahuel Barrios: 29/02/2012, 10:34:20.
*/package com.nbempire.android.magicannotator.component.activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.google.android.apps.analytics.GoogleAnalyticsTracker;
import com.nbempire.android.magicannotator.AppParameter;
import com.nbempire.android.magicannotator.R;
import com.nbempire.android.magicannotator.domain.game.Game;
import com.nbempire.android.magicannotator.exception.TeamShouldHasPlayersException;
import com.nbempire.android.magicannotator.service.AnnotatorService;
import com.nbempire.android.magicannotator.service.GameServiceFactory;
import com.nbempire.android.magicannotator.service.impl.AnnotatorServiceImpl;
import com.nbempire.android.magicannotator.util.ExpandableList;
import com.nbempire.android.magicannotator.util.android.SimpleExpandableListActivity;
import com.nbempire.android.magicannotator.util.android.analytics.GoogleAnalyticsUtil;
/**
* Android activity to show the user the auto-generated teams.
*
* @author Nahuel Barrios.
* @since 1
*/publicclass ViewTeamsActivity extends SimpleExpandableListActivity {
/**
* Tag for class' log.
*/privatestaticfinal String LOG_TAG = "ViewTeamsActivity";
/**
* Service for the annotators.
*/privatefinal AnnotatorService annotatorService = new AnnotatorServiceImpl();
@Override
publicvoid onCreate(Bundle savedInstanceState) {
GoogleAnalyticsTracker.getInstance().trackPageView(GoogleAnalyticsUtil.generatePageName(LOG_TAG));
Game aGame = (Game) this.getIntent().getExtras().getSerializable(AppParameter.GAME);
ExpandableList expandable = null;
try {
expandable = GameServiceFactory.getInstance(aGame).getExpandableTeams(aGame.getTeams());
} catch (TeamShouldHasPlayersException teamShouldHasPlayersException) {
// TODO : Functionality : Return to last activity.
Log.e(LOG_TAG, teamShouldHasPlayersException.getMessage());
}
super.onCreate(savedInstanceState, expandable);
setContentView(R.layout.viewteams);
this.registerForContextMenu(getExpandableListView());
this.addOnClickActionForPlayButton();
}
/**
* Adds onClick funcionality to the "play" button. It starts the next activity to show.
*
* @since 1
*/privatevoid addOnClickActionForPlayButton() {
Button play = (Button) findViewById(R.id.viewteams_button_play);
play.setOnClickListener(new View.OnClickListener() {
publicvoid onClick(View view) {
Game aGame = (Game) getIntent().getExtras().getSerializable(AppParameter.GAME);
Intent nextIntentToShow = new Intent(view.getContext(), annotatorService.get(aGame));
nextIntentToShow.putExtra(AppParameter.GAME, aGame);
startActivity(nextIntentToShow);
}
});
}
}