Back to project page dragon-wars.
The source code is released under:
GNU General Public License
If you think the Android project dragon-wars listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* This file is part of Dragon Wars. */*w ww .ja v a 2 s.com*/ * Dragon Wars 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. * * Dragon Wars 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 Dragon Wars. If not, see <http://www.gnu.org/licenses/>. */ package com.group7.dragonwars; import java.text.DecimalFormat; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.TextView; public class Results extends Activity implements OnClickListener { private Button btnMenu; private DecimalFormat decformat = new DecimalFormat("#.##"); @Override protected final void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_results); btnMenu = (Button) findViewById(R.id.btnMenu); btnMenu.setOnClickListener(this); } @Override protected final void onStart() { super.onStart(); Bundle b = getIntent().getExtras(); TextView winnerNameText = (TextView) findViewById(R.id.winnerNameText); winnerNameText.setText(b.getString("winnerName")); TextView turnsText = (TextView) findViewById(R.id.turnsText); turnsText.setText(Integer.toString(b.getInt("turns")) + " turns"); String[] statsKeys = {"Damage dealt", "Damage received", "Distance travelled", "Gold received", "Units killed", "Units produced"}; String[] statsEntries = new String[statsKeys.length]; for (int i = 0; i < statsKeys.length; ++i) { String statText = decformat.format(b.getDouble(statsKeys[i])); statsEntries[i] = statsKeys[i] + ": " + statText; } ArrayAdapter<String> adapter = new ArrayAdapter<String>(getBaseContext(), android.R.layout.simple_list_item_1, statsEntries); ListView statsList = (ListView) findViewById(R.id.statsList); statsList.setAdapter(adapter); } @Override public final void onClick(final View v) { if (v == this.btnMenu) { Intent intent = new Intent(this, MainMenuActivity.class); startActivity(intent); finish(); } } }