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.
我想在操作栏上添加不可点击的应用程序图标,例如 YouTube 应用程序在屏幕的左上角有应用程序图标。当前操作上的应用程序图标表现得像按钮。
请参阅以了解应用程序图标:
http://developer.android.com/design/patterns/actionbar.html
我认为您正在寻找getSupportActionBar().setHomeButtonEnabled(false);appCompat。如果您没有使用 appCompat,那么只需getActionBar().setHomeButtonEnabled(false)假设您的活动正在扩展ActionBarActivity.
getSupportActionBar().setHomeButtonEnabled(false);
getActionBar().setHomeButtonEnabled(false)
ActionBarActivity