i think that you can add a MenuItem in the differents menus of the phone :
Code:
// In AddressBook list
ApplicationMenuItemRepository.getInstance().addMenuItem(
ApplicationMenuItemRepository.MENUITEM_ADDRESSBOOK_LIST, new SendSMS(30)
);
// In AddressBook card
ApplicationMenuItemRepository.getInstance().addMenuItem(
ApplicationMenuItemRepository.MENUITEM_ADDRESSCARD_VIEW, new SendSMS(30)
);
// In the call logs
ApplicationMenuItemRepository.getInstance().addMenuItem(
ApplicationMenuItemRepository.MENUITEM_PHONE, new SendSMS(30)
);