Loading
0

Android中各种常用的Intent

返回到桌面

@Test
public void backToHome() {
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    context.startActivity(intent);
}

最后编辑于:2020/3/30作者: joycode

我不入地狱,谁入地狱?

评论已关闭