当我按下主页按钮时,它不会像我想的那样返回。
public class TotalOverview extends SherlockActivity {
public void onCreate(Bundle savedInstanceState) {
setTheme(R.style.Theme_Sherlock);
super.onCreate(savedInstanceState);
//requestWindowFeature(Window.FEATURE_PROGRESS);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
setContentView(R.layout.main);
//getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
}
我也尝试用这种方法捕捉它
public boolean onOptionsItemSelected(MenuItem item)
{
boolean toReturn = false;
int id = item.getItemId();
if( id == R.id.abs__home)
{
toReturn = true;
}
return toReturn;
}
但这不起作用我确实使用了这种方法,但 id 与 R.id.abs__home 的 id 不同。那么我怎样才能让它工作。
我使用的模拟器有 android 版本 2.3.1。对于其余的一切,来自 actionbarsherlock 的工作都像预期的那样。
蓝色块是我单击的按钮,单击后我想返回。