我对操作栏主页按钮有疑问。
当我的应用程序启动时,主页按钮不可点击,并且什么都不做。当我在应用程序中移动1级时,我将home设置为可点击,并将其用作向上按钮。
当我回到主菜单时,主页按钮永远停留在可点击状态,尽管它现在什么都不做(应该如此)。但它仍然会突出显示(它不应该)。
在设置了一次可点击后,如何让主页按钮无法点击的任何想法?
我正在使用actionbarsherlock和holo-anywhere如果重要的话。
答案 0 :(得分:0)
试试这个,
public boolean onOptionsItemSelected(MenuItem item) {
super.onOptionsItemSelected(item);
switch(item.getItemId())
{
case android.R.id.home:
PreferenceActivity.this.onBackPressed(); //PreferenceActivity is just the activity name, you can change it
break;
}
return true;
}