Back to project page ddgatve-android.
The source code is released under:
Apache License
If you think the Android project ddgatve-android 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 lv.ddgatve.games.mtable; // w w w . j ava 2 s. com import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.TextView; public class SummaryActivity extends ActionBarActivity { DataHolder holder = DataHolder.getInstance(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_summary); TextView messageText = (TextView) findViewById(R.id.summary_message); messageText.setTextSize(30); messageText.setTextColor(Color.rgb(21, 27, 141)); // Cornflower blue messageText.setText("100 pareizi reizr??ina piem?ri!"); TextView timeText = (TextView) findViewById(R.id.time_message); timeText.setTextSize(20); timeText.setTextColor(Color.rgb(21, 27, 141)); // Cornflower blue timeText.setText("Laiks: " + holder.timeDifference()); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.summary, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } public void reset(View view) { DataHolder holder = DataHolder.getInstance(); holder.reset(); finish(); } }