Android Open Source - TODOs Summary Activity






From Project

Back to project page TODOs.

License

The source code is released under:

GNU General Public License

If you think the Android project TODOs 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

package com.shevaroller.oleksiy_todos;
//w w w  .  j ava2s.  c  o  m
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import android.widget.Toast;

public class SummaryActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    int checkedTodos = 0;
    int uncheckedTodos = 0;
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_summary);
      Toast.makeText(this, "TODOs Summary", Toast.LENGTH_SHORT).show();
      
    Bundle extras = getIntent().getExtras();
    if (extras != null) {
      checkedTodos = extras.getInt("CHECKED_TODOS");
      uncheckedTodos = extras.getInt("UNCHECKED_TODOS");
    }
    TextView textViewforChecked = (TextView)findViewById(R.id.todos_checked_value);
    textViewforChecked.setText(String.valueOf(checkedTodos));
    
    TextView textViewforUnchecked = (TextView)findViewById(R.id.todos_unchecked_value);
    textViewforUnchecked.setText(String.valueOf(uncheckedTodos));
  }

  @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);
  }
}




Java Source Code List

com.shevaroller.oleksiy_todos.ActiveItem.java
com.shevaroller.oleksiy_todos.Item.java
com.shevaroller.oleksiy_todos.Listener.java
com.shevaroller.oleksiy_todos.MainActivity.java
com.shevaroller.oleksiy_todos.ManageActiveActivity.java
com.shevaroller.oleksiy_todos.ManageArchivedActivity.java
com.shevaroller.oleksiy_todos.SummaryActivity.java
com.shevaroller.oleksiy_todos.TodoList.java