作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
Possible Duplicate:
Restart app to a certain activity?
我目前正在编写一个 DialogPreferences Activity 来删除用户帐户。我成功地完全删除了用户数据,现在打算返回到 LAUNCHER 屏幕以插入用户进行新安装。但是我真的找不到返回的方法。
据我所知,Intent 只能从 XML 文件中使用。
有什么方法可以使用 StartActivity() 或在 DialogPreferences Activity 中重启应用程序吗?
public class DeleteAccountActivity extends DialogPreference {
public DeleteAccountActivity(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
super.onDialogClosed(positiveResult);
if (positiveResult) {
if (DEBUG)
Log.d(0, DEBUG_TAG, "DeleteAccountActivity");
try {
...
boolean success = rest.deregister(request);
if (success) {
Toast.makeText(getContext(),
getContext().getResources().getText(R.string.successfully_deleted_account),
Toast.LENGTH_LONG).show();
SharedPreferences.Editor editor = mSharedPref.edit();
editor.clear();
editor.commit();
Intent intent = new Intent();
intent.setClass(this, A.class);
StartActivity(intent); //error
if (DEBUG)
Log.d(0, DEBUG_TAG, "Deleted the user account successfully.");
}
}
catch (Exception e) {
Log.e(0, DEBUG_TAG, "asd", e);
}
}
}
}
我是一名优秀的程序员,十分优秀!