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.
我正在制作这个应用程序来显示蹩脚的笑话,基本上布局有一个后退按钮,(红色箭头指向)。但是每当我按下它时,应用程序就会崩溃。我了解到硬件后退按钮(在右侧)工作得很好。由于我的截止日期很紧,我只需使用硬件按钮就可以了。那么我在哪里可以找到取出后退按钮的代码,或者我将如何取出它?非常感谢你们!
how would I take it out?
要禁用Action栏上的后退按钮,请在onCreate()您的Activity尝试功能中:
Action
onCreate()
Activity
ActionBar actionBar = getActionBar(); actionBar.setHomeButtonEnabled(false); actionBar.setDisplayShowHomeEnabled(false);
希望能帮助到你。