actionbarsherlock を使用してメニューを膨らませようとしましたが、運がありません。何が間違っているか提案してください。ここに私のコードがあります:
@Override
public boolean onCreateOptionsMenu(com.actionbarsherlock.view.Menu menu) {
MenuInflater inflater=getSherlockActivity().getSupportMenuInflater(); //getSherlockActivity() not recognised
inflater.inflate(R.menu.widgets_menu, menu);
// I have also tried this:
//MenuInflater inflater=getSupportMenuInflater();// getSupportMenuInflater() not recognized
//inflater.inflate(R.menu.widgets_menu, menu);
return true;
}
注:必要なすべてのクラスをインポートしました
import com.actionbarsherlock.ActionBarSherlock;
import com.actionbarsherlock.ActionBarSherlock.OnCreateOptionsMenuListener;
import com.actionbarsherlock.app.SherlockActivity;
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuInflater;
前もって感謝します。