1
我已經多次遇到這個問題,並且每次都是通過它自己解決的。我不知道爲什麼我有這個問題。Android sherlock庫無效選項菜單問題
最後一次,我剛剛清理工作區(Build Auto之後)並嘗試運行android應用程序。
這裏觸發錯誤的代碼。
mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
R.drawable.ic_drawer, R.string.drawer_open,
R.string.drawer_close) {
/** Called when drawer is closed */
public void onDrawerClosed(View view) {
getSupportActionBar().setTitle(mTitle);
invalidateOptionsMenu();
}
/** Called when a drawer is opened */
public void onDrawerOpened(View drawerView) {
getSupportActionBar().setTitle("Menu");
invalidateOptionsMenu();
}
};
我已經嘗試清除鏈接標記,它的工作原理,但直到我再次清理項目。
謝謝
究竟是什麼錯誤您收到?如果有異常請發送logcat輸出。 –