此代码应重新启动我的应用程序:
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPackageName());
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
getContext().startActivity(i);
但是我得到了一个按摩师getBaseContext() is undefined for the type ButtonView.PhoneCallListener
,我怎么能在不改变扩展的情况下解决这个问题?
我尝试getContext()
了,但这让我进入了主屏幕,而不是应用程序。