If you think the Android project Pedometer 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
/*
* Copyright 2014 Thomas Hoffmann/*fromwww.java2s.com*/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/package de.j4velin.pedometer;
import java.util.Calendar;
import java.util.Date;
import android.app.Dialog;
import android.content.Context;
import android.util.Pair;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.TextView;
import de.j4velin.pedometer.util.Util;
class Dialog_Statistics {
publicstatic Dialog getDialog(final Context c, int since_boot) {
final Dialog d = new Dialog(c);
d.requestWindowFeature(Window.FEATURE_NO_TITLE);
d.setContentView(R.layout.statistics);
d.findViewById(R.id.close).setOnClickListener(new OnClickListener() {
@Override
publicvoid onClick(View v) {
d.dismiss();
}
});
Database db = Database.getInstance(c);
Pair<Date, Integer> record = db.getRecordData();
Calendar date = Calendar.getInstance();
date.setTimeInMillis(Util.getToday());
int daysThisMonth = date.get(Calendar.DAY_OF_MONTH);
date.add(Calendar.DATE, -6);
int thisWeek = db.getSteps(date.getTimeInMillis(), System.currentTimeMillis()) + since_boot;
date.setTimeInMillis(Util.getToday());
date.set(Calendar.DAY_OF_MONTH, 1);
int thisMonth = db.getSteps(date.getTimeInMillis(), System.currentTimeMillis()) + since_boot;
((TextView) d.findViewById(R.id.record)).setText(Fragment_Overview.formatter.format(record.second) + " @ "
+ java.text.DateFormat.getDateInstance().format(record.first));
((TextView) d.findViewById(R.id.totalthisweek)).setText(Fragment_Overview.formatter.format(thisWeek));
((TextView) d.findViewById(R.id.totalthismonth)).setText(Fragment_Overview.formatter.format(thisMonth));
((TextView) d.findViewById(R.id.averagethisweek)).setText(Fragment_Overview.formatter.format(thisWeek / 7));
((TextView) d.findViewById(R.id.averagethismonth)).setText(Fragment_Overview.formatter.format(thisMonth / daysThisMonth));
db.close();
return d;
}
}