Android 将系统的back键模拟成为home键的功能

Android 将系统的back键模拟成为home键的功能

@Override
public void onBackPressed() {
    Intent intent = new Intent(Intent.ACTION_MAIN); 
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    intent.addCategory(Intent.CATEGORY_HOME); 
    startActivity(intent);
}

参考网址:https://www.cnblogs.com/tony-yang-flutter/p/androidbacktohome.html

发布了19 篇原创文章 · 获赞 15 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/aidou1314/article/details/94332133