Here is a brief topic on how to set icons on options menu in Android, this is an extension to Options Menu in Android.
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class Main extends Activity {
private int searchBtnId = Menu.FIRST;
private int scheduleBtnId = Menu.FIRST + 1;
/** Called when the activity is first [...]
