简体   繁体   中英

Sum all the display values

I need to perform sum the total of calories that display based on added food. My design is like this:

Breakfast

[EDITTEXT]

[BUTTON][TEXTVIEW] <--display food name and calories

[BUTTON2][TEXTVIEW2]

[BUTTON3][TEXTVIEW3]

[BUTTON4][TEXTVIEW4]

[BUTTON5][TEXTVIEW5]

same thing repeat on Lunch and Dinner

In the end, i would like to have a TEXTVIEW to show the total amount of calories based on added food.

Anyone know how to do so?

Here is my code:

public class MyFoodCalIntakeActivity extends Activity {

private Button breakfastSearchButton;
private Button breakfastSearchButton2;
private Button breakfastSearchButton3;
private Button breakfastSearchButton4;
private Button breakfastSearchButton5;

private Button lunchSearchButton;
private Button lunchSearchButton2;
private Button lunchSearchButton3;
private Button lunchSearchButton4;
private Button lunchSearchButton5;

private Button dinnerSearchButton;
private Button dinnerSearchButton2;
private Button dinnerSearchButton3;
private Button dinnerSearchButton4;
private Button dinnerSearchButton5;

private EditText breakfastEditText;
private EditText lunchEditText;
private EditText dinnerEditText;

private TextView breakfastTextView1;
private TextView breakfastTextView2;
private TextView breakfastTextView3;
private TextView breakfastTextView4;
private TextView breakfastTextView5;

private TextView lunchTextView1;
private TextView lunchTextView2;
private TextView lunchTextView3;
private TextView lunchTextView4;
private TextView lunchTextView5;

private TextView dinnerTextView1;
private TextView dinnerTextView2;
private TextView dinnerTextView3;
private TextView dinnerTextView4;
private TextView dinnerTextView5;

private DatabaseHelper dbHelper = new DatabaseHelper(MyFoodCalIntakeActivity.this,"food",2);

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.food_calorie_intake);

    。。。

class breakfastSearchButtonListener implements OnClickListener, android.view.View.OnClickListener
{
public void onClick(View v) 
{
    if (v.getId() == R.id.breakfastSearchButton) {

    String display = "";
    SQLiteDatabase db = dbHelper.getWritableDatabase();
    /** the result will be loaded in cursor **/
    Cursor cursor = db.query("food_table", new String[]{"ID","name","calorie"}, null, null, null, null, null);

    while(cursor.moveToNext())
    {

        String name = cursor.getString(cursor.getColumnIndex("name"));
        String calorie = cursor.getString(cursor.getColumnIndex("calorie"));


        if (name.compareTo(breakfastEditText.getText().toString())==0){
            display = display +"Name: "+name+", Calorie: "+calorie;
            breakfastTextView1.setText(display);
        }
    }
}
}

public void onClick(DialogInterface dialog, int which) 
{
    // TODO Auto-generated method stub  
}

} // end activity

please bear with me, the code is little bit longer.

Use a running total.

Have a single variable int "calories"

Whenever you add a food item add them to calories and display

whenever you remove a food item remove them from calories and display

Well you already have a String that holds the calories value. You can convert this to an int by doing Integer.parseInt(calorie) . So just keep a running total like this:

int calorieTotal = 0;
while(cursor.moveToNext())
{

    String name = cursor.getString(cursor.getColumnIndex("name"));
    String calorie = cursor.getString(cursor.getColumnIndex("calorie"));
    calorieTotal += Integer.parseInt(calorie);

    if (name.compareTo(breakfastEditText.getText().toString())==0){
        display = display +"Name: "+name+", Calorie: "+calorie;
        breakfastTextView1.setText(display);
    }
}
<textView>.setText(String.valueOf(calorieTotal));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM