Я хочу изменить свой план, который представляет собой базу данных приложений каждый день в полночь.Также я хочу изменить свою активность, которая показывает определенные числа, которые должны меняться ежедневно в соответствии с информацией о плане.Я могу использовать Диспетчер тревог для обновления базы данных, но не могу изменить текстовые представления Действия.Это дает мне эту ошибку:
java.lang.ClassCastException: android.app.ReceiverRestrictedContext cannot be cast to com.example.bleh.myapplication.feature2
Вот мой класс приемника сигналов тревоги:
package com.example.bleh.myapplication;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;
import com.example.bleh.myapplication.DB.AppDatabase;
import com.example.bleh.myapplication.DB.Plan;
import com.example.bleh.myapplication.DB.User;
import com.example.bleh.myapplication.Utils1.FormulaUtils;
import com.github.lzyzsd.circleprogress.DonutProgress;
public class AlarmReceiver extends BroadcastReceiver {
private static final String DEBUG_TAG = "AlarmReceiver";
public AppDatabase mydb;
Plan plan;
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Alarm worked.", Toast.LENGTH_LONG).show();
mydb = AppDatabase.getInstance(context);
final long planid = intent.getExtras().getLong("planid");
final long userid = intent.getExtras().getLong("uid");
final String requirements = intent.getExtras().getString("requirements");
Log.wtf("PlanId: ",planid+"");
Log.wtf("UserId: ",userid+"");
Log.wtf("Requirements",requirements);
plan = mydb.getPlanDao(context).getPlanById((int) planid);
final User user = mydb.getUserDao(context).getUserById((int) userid);
plan.setCurrentWeight(FormulaUtils.reCalculateWeight(plan.getCurrentWeight(), Double.parseDouble(requirements)));
plan.setBmr(Double.parseDouble(FormulaUtils.calculateBmr(user.getSex(), plan.getCurrentWeight(), user.getHeight(), user.getBirthDay())));
plan.setNbOfDays(plan.getNbOfDays() - 1);
mydb.getPlanDao(context).update(plan);
TextView requirement = ((feature2)context).findViewById(R.id.requirements);
TextView Days = ((feature2)context).findViewById(R.id.days);
DonutProgress DailyProgress = ((feature2)context).findViewById(R.id.donut_progress);
requirement.setText(FormulaUtils.CalulcateDailyRequirements(plan.getWorkoutPerWeek(), plan.getBmr()));
Days.setText(plan.getNbOfDays()+"");
int progress = 0;
DailyProgress.setProgress((float) progress);
// Intent newIntent = new Intent(context, feature2.class);
// newIntent.putExtra("uid", userid);
// newIntent.putExtra("planid", planid);
// context.startActivity(newIntent);
}
}
Вот моя функция деятельности (часть):
public class feature2 extends AppCompatActivity {
public AppDatabase mydb;
TextView BMR,requirements,days;
Button addfood,addex,nextday;
LinearLayout mainLayout;
Button Meas,Bluetooth;
DonutProgress donutProgress;
Plan plan;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_feature2);
Intent intent = getIntent();
requirements = findViewById(R.id.requirements);
donutProgress = findViewById(R.id.donut_progress);
days = findViewById(R.id.days);
final long planid = intent.getExtras().getLong("planid");
final long userid = intent.getExtras().getLong("uid");
mydb = AppDatabase.getInstance(feature2.this);
plan = mydb.getPlanDao(feature2.this).getPlanById((int) planid);
requirements.setText(FormulaUtils.CalulcateDailyRequirements(plan.getWorkoutPerWeek(), plan.getBmr()));
Intent intent1 = new Intent(this, AlarmReceiver.class);
intent1.putExtra("uid", userid);
intent1.putExtra("planid", planid);
intent1.putExtra("requirements",requirements.getText().toString());
Calendar updateTime = Calendar.getInstance();
updateTime.setTimeZone(TimeZone.getTimeZone("GMT"));
updateTime.set(Calendar.HOUR_OF_DAY, 20);
updateTime.set(Calendar.MINUTE, 03);
updateTime.set(Calendar.SECOND,0);
Date milliseconds = updateTime.getTime();
Log.wtf("millisec",milliseconds+"");
long millis = milliseconds.getTime();
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0,
intent1, PendingIntent.FLAG_ONE_SHOT);
AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, millis , pendingIntent);
Toast.makeText(this, "Alarm set", Toast.LENGTH_LONG).show();
}
}