Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道当我按下 Home 键时 Android 会返回主屏幕,但是,我希望我的 imageButton 充当 Home 键,它可以将主屏幕通知到前台。
我应该如何实现我的 onClickListener 来完成这个?
Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); startActivity(intent);