gpt4 book ai didi

android - 如何在Preferences Activity中重启应用或返回LAUNCHER页面?

转载 作者:行者123 更新时间:2023-11-29 02:00:37 25 4
gpt4 key购买 nike

<分区>

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);
}
}
}
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com