This code should restart my app:
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPackageName());
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
getContext().startActivity(i);
but I get a massege getBaseContext() is undefined for the type ButtonView.PhoneCallListener
how can I sove that without changing the extention's?
I tried getContext()
instead but that got me to the main screen and not to the app.